Initial packaging for Tizen
[profile/ivi/gobject-introspection.git] / scannerparser.h
1 /* A Bison parser, made by GNU Bison 2.5.  */
2
3 /* Bison interface for Yacc-like parsers in C
4    
5       Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc.
6    
7    This program is free software: you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation, either version 3 of the License, or
10    (at your option) any later version.
11    
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
19
20 /* As a special exception, you may create a larger work that contains
21    part or all of the Bison parser skeleton and distribute that work
22    under terms of your choice, so long as that work isn't itself a
23    parser generator using the skeleton or a modified version thereof
24    as a parser skeleton.  Alternatively, if you modify or redistribute
25    the parser skeleton itself, you may (at your option) remove this
26    special exception, which will cause the skeleton and the resulting
27    Bison output files to be licensed under the GNU General Public
28    License without this special exception.
29    
30    This special exception was added by the Free Software Foundation in
31    version 2.2 of Bison.  */
32
33
34 /* Tokens.  */
35 #ifndef YYTOKENTYPE
36 # define YYTOKENTYPE
37    /* Put the tokens into the symbol table, so that GDB and other debuggers
38       know about them.  */
39    enum yytokentype {
40      IDENTIFIER = 258,
41      TYPEDEF_NAME = 259,
42      INTEGER = 260,
43      FLOATING = 261,
44      CHARACTER = 262,
45      STRING = 263,
46      ELLIPSIS = 264,
47      ADDEQ = 265,
48      SUBEQ = 266,
49      MULEQ = 267,
50      DIVEQ = 268,
51      MODEQ = 269,
52      XOREQ = 270,
53      ANDEQ = 271,
54      OREQ = 272,
55      SL = 273,
56      SR = 274,
57      SLEQ = 275,
58      SREQ = 276,
59      EQ = 277,
60      NOTEQ = 278,
61      LTEQ = 279,
62      GTEQ = 280,
63      ANDAND = 281,
64      OROR = 282,
65      PLUSPLUS = 283,
66      MINUSMINUS = 284,
67      ARROW = 285,
68      AUTO = 286,
69      BOOL = 287,
70      BREAK = 288,
71      CASE = 289,
72      CHAR = 290,
73      CONST = 291,
74      CONTINUE = 292,
75      DEFAULT = 293,
76      DO = 294,
77      DOUBLE = 295,
78      ELSE = 296,
79      ENUM = 297,
80      EXTENSION = 298,
81      EXTERN = 299,
82      FLOAT = 300,
83      FOR = 301,
84      GOTO = 302,
85      IF = 303,
86      INLINE = 304,
87      INT = 305,
88      LONG = 306,
89      REGISTER = 307,
90      RESTRICT = 308,
91      RETURN = 309,
92      SHORT = 310,
93      SIGNED = 311,
94      SIZEOF = 312,
95      STATIC = 313,
96      STRUCT = 314,
97      SWITCH = 315,
98      TYPEDEF = 316,
99      UNION = 317,
100      UNSIGNED = 318,
101      VOID = 319,
102      VOLATILE = 320,
103      WHILE = 321,
104      FUNCTION_MACRO = 322,
105      OBJECT_MACRO = 323
106    };
107 #endif
108 /* Tokens.  */
109 #define IDENTIFIER 258
110 #define TYPEDEF_NAME 259
111 #define INTEGER 260
112 #define FLOATING 261
113 #define CHARACTER 262
114 #define STRING 263
115 #define ELLIPSIS 264
116 #define ADDEQ 265
117 #define SUBEQ 266
118 #define MULEQ 267
119 #define DIVEQ 268
120 #define MODEQ 269
121 #define XOREQ 270
122 #define ANDEQ 271
123 #define OREQ 272
124 #define SL 273
125 #define SR 274
126 #define SLEQ 275
127 #define SREQ 276
128 #define EQ 277
129 #define NOTEQ 278
130 #define LTEQ 279
131 #define GTEQ 280
132 #define ANDAND 281
133 #define OROR 282
134 #define PLUSPLUS 283
135 #define MINUSMINUS 284
136 #define ARROW 285
137 #define AUTO 286
138 #define BOOL 287
139 #define BREAK 288
140 #define CASE 289
141 #define CHAR 290
142 #define CONST 291
143 #define CONTINUE 292
144 #define DEFAULT 293
145 #define DO 294
146 #define DOUBLE 295
147 #define ELSE 296
148 #define ENUM 297
149 #define EXTENSION 298
150 #define EXTERN 299
151 #define FLOAT 300
152 #define FOR 301
153 #define GOTO 302
154 #define IF 303
155 #define INLINE 304
156 #define INT 305
157 #define LONG 306
158 #define REGISTER 307
159 #define RESTRICT 308
160 #define RETURN 309
161 #define SHORT 310
162 #define SIGNED 311
163 #define SIZEOF 312
164 #define STATIC 313
165 #define STRUCT 314
166 #define SWITCH 315
167 #define TYPEDEF 316
168 #define UNION 317
169 #define UNSIGNED 318
170 #define VOID 319
171 #define VOLATILE 320
172 #define WHILE 321
173 #define FUNCTION_MACRO 322
174 #define OBJECT_MACRO 323
175
176
177
178
179 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
180 typedef union YYSTYPE
181 {
182
183 /* Line 2068 of yacc.c  */
184 #line 134 "scannerparser.y"
185
186   char *str;
187   GList *list;
188   GISourceSymbol *symbol;
189   GISourceType *ctype;
190   StorageClassSpecifier storage_class_specifier;
191   TypeQualifier type_qualifier;
192   FunctionSpecifier function_specifier;
193   UnaryOperator unary_operator;
194
195
196
197 /* Line 2068 of yacc.c  */
198 #line 199 "scannerparser.h"
199 } YYSTYPE;
200 # define YYSTYPE_IS_TRIVIAL 1
201 # define yystype YYSTYPE /* obsolescent; will be withdrawn */
202 # define YYSTYPE_IS_DECLARED 1
203 #endif
204
205 extern YYSTYPE yylval;
206
207