~ubuntu-branches/debian/sid/eclipse-cdt/sid

« back to all changes in this revision

Viewing changes to results/plugins/org.eclipse.cdt.core.parser.upc/src/org/eclipse/cdt/internal/core/dom/parser/upc/UPCParsersym.java

  • Committer: Package Import Robot
  • Author(s): Jakub Adam
  • Date: 2011-10-06 21:15:04 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20111006211504-8dutmljjih0zikfv
Tags: 8.0.1-1
* New upstream release.
* Split the JNI packages into a separate architecture dependent
  package and made eclipse-cdt architecture independent.
* Install JNI libraries into multiarch aware location
* Bumped Standards-Version to 3.9.2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*******************************************************************************
2
 
* Copyright (c) 2006, 2009 IBM Corporation and others.
3
 
* All rights reserved. This program and the accompanying materials
4
 
* are made available under the terms of the Eclipse Public License v1.0
5
 
* which accompanies this distribution, and is available at
6
 
* http://www.eclipse.org/legal/epl-v10.html
7
 
*
8
 
* Contributors:
9
 
*     IBM Corporation - initial API and implementation
10
 
*********************************************************************************/
11
 
 
12
 
// This file was generated by LPG
13
 
 
14
 
package org.eclipse.cdt.internal.core.dom.parser.upc;
15
 
 
16
 
public interface UPCParsersym {
17
 
    public final static int
18
 
      TK_auto = 50,
19
 
      TK_break = 29,
20
 
      TK_case = 30,
21
 
      TK_char = 56,
22
 
      TK_const = 43,
23
 
      TK_continue = 27,
24
 
      TK_default = 31,
25
 
      TK_do = 32,
26
 
      TK_double = 57,
27
 
      TK_else = 93,
28
 
      TK_enum = 68,
29
 
      TK_extern = 51,
30
 
      TK_float = 58,
31
 
      TK_for = 33,
32
 
      TK_goto = 34,
33
 
      TK_if = 35,
34
 
      TK_inline = 52,
35
 
      TK_int = 59,
36
 
      TK_long = 60,
37
 
      TK_register = 53,
38
 
      TK_restrict = 44,
39
 
      TK_return = 36,
40
 
      TK_short = 61,
41
 
      TK_signed = 62,
42
 
      TK_sizeof = 12,
43
 
      TK_static = 49,
44
 
      TK_struct = 69,
45
 
      TK_switch = 37,
46
 
      TK_typedef = 54,
47
 
      TK_union = 70,
48
 
      TK_unsigned = 63,
49
 
      TK_void = 64,
50
 
      TK_volatile = 45,
51
 
      TK_while = 28,
52
 
      TK__Bool = 65,
53
 
      TK__Complex = 66,
54
 
      TK__Imaginary = 67,
55
 
      TK_integer = 13,
56
 
      TK_floating = 14,
57
 
      TK_charconst = 15,
58
 
      TK_stringlit = 16,
59
 
      TK_identifier = 1,
60
 
      TK_Completion = 3,
61
 
      TK_EndOfCompletion = 5,
62
 
      TK_Invalid = 107,
63
 
      TK_LeftBracket = 55,
64
 
      TK_LeftParen = 2,
65
 
      TK_LeftBrace = 6,
66
 
      TK_Dot = 80,
67
 
      TK_Arrow = 94,
68
 
      TK_PlusPlus = 10,
69
 
      TK_MinusMinus = 11,
70
 
      TK_And = 9,
71
 
      TK_Star = 4,
72
 
      TK_Plus = 7,
73
 
      TK_Minus = 8,
74
 
      TK_Tilde = 17,
75
 
      TK_Bang = 18,
76
 
      TK_Slash = 81,
77
 
      TK_Percent = 82,
78
 
      TK_RightShift = 76,
79
 
      TK_LeftShift = 77,
80
 
      TK_LT = 83,
81
 
      TK_GT = 84,
82
 
      TK_LE = 85,
83
 
      TK_GE = 86,
84
 
      TK_EQ = 88,
85
 
      TK_NE = 89,
86
 
      TK_Caret = 90,
87
 
      TK_Or = 91,
88
 
      TK_AndAnd = 92,
89
 
      TK_OrOr = 95,
90
 
      TK_Question = 96,
91
 
      TK_Colon = 74,
92
 
      TK_DotDotDot = 79,
93
 
      TK_Assign = 75,
94
 
      TK_StarAssign = 97,
95
 
      TK_SlashAssign = 98,
96
 
      TK_PercentAssign = 99,
97
 
      TK_PlusAssign = 100,
98
 
      TK_MinusAssign = 101,
99
 
      TK_RightShiftAssign = 102,
100
 
      TK_LeftShiftAssign = 103,
101
 
      TK_AndAssign = 104,
102
 
      TK_CaretAssign = 105,
103
 
      TK_OrAssign = 106,
104
 
      TK_Comma = 71,
105
 
      TK_RightBracket = 78,
106
 
      TK_RightParen = 73,
107
 
      TK_RightBrace = 72,
108
 
      TK_SemiColon = 25,
109
 
      TK_MYTHREAD = 19,
110
 
      TK_THREADS = 20,
111
 
      TK_UPC_MAX_BLOCKSIZE = 21,
112
 
      TK_relaxed = 46,
113
 
      TK_shared = 47,
114
 
      TK_strict = 48,
115
 
      TK_upc_barrier = 38,
116
 
      TK_upc_localsizeof = 22,
117
 
      TK_upc_blocksizeof = 23,
118
 
      TK_upc_elemsizeof = 24,
119
 
      TK_upc_notify = 39,
120
 
      TK_upc_fence = 40,
121
 
      TK_upc_wait = 41,
122
 
      TK_upc_forall = 42,
123
 
      TK_ERROR_TOKEN = 26,
124
 
      TK_EOF_TOKEN = 87;
125
 
 
126
 
      public final static String orderedTerminalSymbols[] = {
127
 
                 "",
128
 
                 "identifier",
129
 
                 "LeftParen",
130
 
                 "Completion",
131
 
                 "Star",
132
 
                 "EndOfCompletion",
133
 
                 "LeftBrace",
134
 
                 "Plus",
135
 
                 "Minus",
136
 
                 "And",
137
 
                 "PlusPlus",
138
 
                 "MinusMinus",
139
 
                 "sizeof",
140
 
                 "integer",
141
 
                 "floating",
142
 
                 "charconst",
143
 
                 "stringlit",
144
 
                 "Tilde",
145
 
                 "Bang",
146
 
                 "MYTHREAD",
147
 
                 "THREADS",
148
 
                 "UPC_MAX_BLOCKSIZE",
149
 
                 "upc_localsizeof",
150
 
                 "upc_blocksizeof",
151
 
                 "upc_elemsizeof",
152
 
                 "SemiColon",
153
 
                 "ERROR_TOKEN",
154
 
                 "continue",
155
 
                 "while",
156
 
                 "break",
157
 
                 "case",
158
 
                 "default",
159
 
                 "do",
160
 
                 "for",
161
 
                 "goto",
162
 
                 "if",
163
 
                 "return",
164
 
                 "switch",
165
 
                 "upc_barrier",
166
 
                 "upc_notify",
167
 
                 "upc_fence",
168
 
                 "upc_wait",
169
 
                 "upc_forall",
170
 
                 "const",
171
 
                 "restrict",
172
 
                 "volatile",
173
 
                 "relaxed",
174
 
                 "shared",
175
 
                 "strict",
176
 
                 "static",
177
 
                 "auto",
178
 
                 "extern",
179
 
                 "inline",
180
 
                 "register",
181
 
                 "typedef",
182
 
                 "LeftBracket",
183
 
                 "char",
184
 
                 "double",
185
 
                 "float",
186
 
                 "int",
187
 
                 "long",
188
 
                 "short",
189
 
                 "signed",
190
 
                 "unsigned",
191
 
                 "void",
192
 
                 "_Bool",
193
 
                 "_Complex",
194
 
                 "_Imaginary",
195
 
                 "enum",
196
 
                 "struct",
197
 
                 "union",
198
 
                 "Comma",
199
 
                 "RightBrace",
200
 
                 "RightParen",
201
 
                 "Colon",
202
 
                 "Assign",
203
 
                 "RightShift",
204
 
                 "LeftShift",
205
 
                 "RightBracket",
206
 
                 "DotDotDot",
207
 
                 "Dot",
208
 
                 "Slash",
209
 
                 "Percent",
210
 
                 "LT",
211
 
                 "GT",
212
 
                 "LE",
213
 
                 "GE",
214
 
                 "EOF_TOKEN",
215
 
                 "EQ",
216
 
                 "NE",
217
 
                 "Caret",
218
 
                 "Or",
219
 
                 "AndAnd",
220
 
                 "else",
221
 
                 "Arrow",
222
 
                 "OrOr",
223
 
                 "Question",
224
 
                 "StarAssign",
225
 
                 "SlashAssign",
226
 
                 "PercentAssign",
227
 
                 "PlusAssign",
228
 
                 "MinusAssign",
229
 
                 "RightShiftAssign",
230
 
                 "LeftShiftAssign",
231
 
                 "AndAssign",
232
 
                 "CaretAssign",
233
 
                 "OrAssign",
234
 
                 "Invalid"
235
 
             };
236
 
 
237
 
    public final static boolean isValidForParser = true;
238
 
}