Skip to main content
summaryrefslogtreecommitdiffstats
blob: eeb0c3a8f6dd8802fa6b28fa9a3900b825835d80 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
/* Generated By:JavaCC: Do not edit this line. CPPParserConstants.java */
package org.eclipse.cdt.internal.parser.generated;

public interface CPPParserConstants {

  int EOF = 0;
  int LCURLYBRACE = 28;
  int RCURLYBRACE = 29;
  int LSQUAREBRACKET = 30;
  int RSQUAREBRACKET = 31;
  int LPARENTHESIS = 32;
  int RPARENTHESIS = 33;
  int SCOPE = 34;
  int COLON = 35;
  int SEMICOLON = 36;
  int COMMA = 37;
  int QUESTIONMARK = 38;
  int ELLIPSIS = 39;
  int ASSIGNEQUAL = 40;
  int TIMESEQUAL = 41;
  int DIVIDEEQUAL = 42;
  int MODEQUAL = 43;
  int PLUSEQUAL = 44;
  int MINUSEQUAL = 45;
  int SHIFTLEFTEQUAL = 46;
  int SHIFTRIGHTEQUAL = 47;
  int BITWISEANDEQUAL = 48;
  int BITWISEXOREQUAL = 49;
  int BITWISEOREQUAL = 50;
  int OR = 51;
  int AND = 52;
  int BITWISEOR = 53;
  int BITWISEXOR = 54;
  int AMPERSAND = 55;
  int EQUAL = 56;
  int NOTEQUAL = 57;
  int LESSTHAN = 58;
  int GREATERTHAN = 59;
  int LESSTHANOREQUALTO = 60;
  int GREATERTHANOREQUALTO = 61;
  int SHIFTLEFT = 62;
  int SHIFTRIGHT = 63;
  int PLUS = 64;
  int MINUS = 65;
  int STAR = 66;
  int DIVIDE = 67;
  int MOD = 68;
  int PLUSPLUS = 69;
  int MINUSMINUS = 70;
  int TILDE = 71;
  int NOT = 72;
  int DOT = 73;
  int POINTERTO = 74;
  int DOTSTAR = 75;
  int ARROWSTAR = 76;
  int AUTO = 77;
  int BREAK = 78;
  int CASE = 79;
  int CATCH = 80;
  int CHAR = 81;
  int CONST = 82;
  int CONTINUE = 83;
  int _DEFAULT = 84;
  int DELETE = 85;
  int DO = 86;
  int DOUBLE = 87;
  int ELSE = 88;
  int ENUM = 89;
  int EXTERN = 90;
  int FINALLY = 91;
  int FLOAT = 92;
  int FOR = 93;
  int FRIEND = 94;
  int GOTO = 95;
  int IF = 96;
  int INLINE = 97;
  int INT = 98;
  int LONG = 99;
  int NEW = 100;
  int PRIVATE = 101;
  int PROTECTED = 102;
  int PUBLIC = 103;
  int REDECLARED = 104;
  int REGISTER = 105;
  int RETURN = 106;
  int SHORT = 107;
  int SIGNED = 108;
  int SIZEOF = 109;
  int STATIC = 110;
  int STRUCT = 111;
  int CLASS = 112;
  int SWITCH = 113;
  int TEMPLATE = 114;
  int THIS = 115;
  int TRY = 116;
  int TYPEDEF = 117;
  int UNION = 118;
  int UNSIGNED = 119;
  int VIRTUAL = 120;
  int VOID = 121;
  int VOLATILE = 122;
  int WHILE = 123;
  int OPERATOR = 124;
  int TRUETOK = 125;
  int FALSETOK = 126;
  int THROW = 127;
  int OCTALINT = 128;
  int OCTALLONG = 129;
  int UNSIGNED_OCTALINT = 130;
  int UNSIGNED_OCTALLONG = 131;
  int DECIMALINT = 132;
  int DECIMALLONG = 133;
  int UNSIGNED_DECIMALINT = 134;
  int UNSIGNED_DECIMALLONG = 135;
  int HEXADECIMALINT = 136;
  int HEXADECIMALLONG = 137;
  int UNSIGNED_HEXADECIMALINT = 138;
  int UNSIGNED_HEXADECIMALLONG = 139;
  int FLOATONE = 140;
  int FLOATTWO = 141;
  int CHARACTER = 142;
  int STRING = 143;
  int ID = 144;

  int DEFAULT = 0;
  int DEFINE_STMT = 1;
  int INCLUDE_STMT = 2;
  int LINE_NUMBER = 3;
  int LINE_DIRECTIVE = 4;
  int AFTER_LINE_DIRECTIVE = 5;
  int IN_LINE_COMMENT = 6;
  int IN_COMMENT = 7;
  int PREPROCESSOR_OUTPUT = 8;

  String[] tokenImage = {
    "<EOF>",
    "\" \"",
    "\"\\t\"",
    "\"\\n\"",
    "\"\\r\"",
    "\"//\"",
    "\"/*\"",
    "<token of kind 7>",
    "<token of kind 8>",
    "<token of kind 9>",
    "<token of kind 10>",
    "\"#\"",
    "<token of kind 12>",
    "<token of kind 13>",
    "<token of kind 14>",
    "<token of kind 15>",
    "<token of kind 16>",
    "<token of kind 17>",
    "<token of kind 18>",
    "<token of kind 19>",
    "<token of kind 20>",
    "<token of kind 21>",
    "<token of kind 22>",
    "<token of kind 23>",
    "\"*/\"",
    "<token of kind 25>",
    "<token of kind 26>",
    "<token of kind 27>",
    "\"{\"",
    "\"}\"",
    "\"[\"",
    "\"]\"",
    "\"(\"",
    "\")\"",
    "\"::\"",
    "\":\"",
    "\";\"",
    "\",\"",
    "\"?\"",
    "\"...\"",
    "\"=\"",
    "\"*=\"",
    "\"/=\"",
    "\"%=\"",
    "\"+=\"",
    "\"-=\"",
    "\"<<=\"",
    "\">>=\"",
    "\"&=\"",
    "\"^=\"",
    "\"|=\"",
    "\"||\"",
    "\"&&\"",
    "\"|\"",
    "\"^\"",
    "\"&\"",
    "\"==\"",
    "\"!=\"",
    "\"<\"",
    "\">\"",
    "\"<=\"",
    "\">=\"",
    "\"<<\"",
    "\">>\"",
    "\"+\"",
    "\"-\"",
    "\"*\"",
    "\"/\"",
    "\"%\"",
    "\"++\"",
    "\"--\"",
    "\"~\"",
    "\"!\"",
    "\".\"",
    "\"->\"",
    "\".*\"",
    "\"->*\"",
    "\"auto\"",
    "\"break\"",
    "\"case\"",
    "\"catch\"",
    "\"char\"",
    "\"const\"",
    "\"continue\"",
    "\"default\"",
    "\"delete\"",
    "\"do\"",
    "\"double\"",
    "\"else\"",
    "\"enum\"",
    "\"extern\"",
    "\"finally\"",
    "\"float\"",
    "\"for\"",
    "\"friend\"",
    "\"goto\"",
    "\"if\"",
    "\"inline\"",
    "\"int\"",
    "\"long\"",
    "\"new\"",
    "\"private\"",
    "\"protected\"",
    "\"public\"",
    "\"redeclared\"",
    "\"register\"",
    "\"return\"",
    "\"short\"",
    "\"signed\"",
    "\"sizeof\"",
    "\"static\"",
    "\"struct\"",
    "\"class\"",
    "\"switch\"",
    "\"template\"",
    "\"this\"",
    "\"try\"",
    "\"typedef\"",
    "\"union\"",
    "\"unsigned\"",
    "\"virtual\"",
    "\"void\"",
    "\"volatile\"",
    "\"while\"",
    "\"operator\"",
    "\"true\"",
    "\"false\"",
    "\"throw\"",
    "<OCTALINT>",
    "<OCTALLONG>",
    "<UNSIGNED_OCTALINT>",
    "<UNSIGNED_OCTALLONG>",
    "<DECIMALINT>",
    "<DECIMALLONG>",
    "<UNSIGNED_DECIMALINT>",
    "<UNSIGNED_DECIMALLONG>",
    "<HEXADECIMALINT>",
    "<HEXADECIMALLONG>",
    "<UNSIGNED_HEXADECIMALINT>",
    "<UNSIGNED_HEXADECIMALLONG>",
    "<FLOATONE>",
    "<FLOATTWO>",
    "<CHARACTER>",
    "<STRING>",
    "<ID>",
  };

}

Back to the top