tizen beta release
[framework/web/webkit-efl.git] / DerivedSources / WebCore / CSSGrammar.h
1
2 /* A Bison parser, made by GNU Bison 2.4.1.  */
3
4 /* Skeleton interface for Bison's Yacc-like parsers in C
5    
6       Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
7    Free Software Foundation, Inc.
8    
9    This program is free software: you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation, either version 3 of the License, or
12    (at your option) any later version.
13    
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18    
19    You should have received a copy of the GNU General Public License
20    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
21
22 /* As a special exception, you may create a larger work that contains
23    part or all of the Bison parser skeleton and distribute that work
24    under terms of your choice, so long as that work isn't itself a
25    parser generator using the skeleton or a modified version thereof
26    as a parser skeleton.  Alternatively, if you modify or redistribute
27    the parser skeleton itself, you may (at your option) remove this
28    special exception, which will cause the skeleton and the resulting
29    Bison output files to be licensed under the GNU General Public
30    License without this special exception.
31    
32    This special exception was added by the Free Software Foundation in
33    version 2.2 of Bison.  */
34
35
36 /* Tokens.  */
37 #ifndef YYTOKENTYPE
38 # define YYTOKENTYPE
39    /* Put the tokens into the symbol table, so that GDB and other debuggers
40       know about them.  */
41    enum yytokentype {
42      TOKEN_EOF = 0,
43      LOWEST_PREC = 258,
44      UNIMPORTANT_TOK = 259,
45      WHITESPACE = 260,
46      SGML_CD = 261,
47      INCLUDES = 262,
48      DASHMATCH = 263,
49      BEGINSWITH = 264,
50      ENDSWITH = 265,
51      CONTAINS = 266,
52      STRING = 267,
53      IDENT = 268,
54      NTH = 269,
55      HEX = 270,
56      IDSEL = 271,
57      IMPORT_SYM = 272,
58      PAGE_SYM = 273,
59      MEDIA_SYM = 274,
60      FONT_FACE_SYM = 275,
61      CHARSET_SYM = 276,
62      NAMESPACE_SYM = 277,
63      WEBKIT_RULE_SYM = 278,
64      WEBKIT_DECLS_SYM = 279,
65      WEBKIT_KEYFRAME_RULE_SYM = 280,
66      WEBKIT_KEYFRAMES_SYM = 281,
67      WEBKIT_VALUE_SYM = 282,
68      WEBKIT_MEDIAQUERY_SYM = 283,
69      WEBKIT_SELECTOR_SYM = 284,
70      WEBKIT_REGION_STYLE_RULE_SYM = 285,
71      TOPLEFTCORNER_SYM = 286,
72      TOPLEFT_SYM = 287,
73      TOPCENTER_SYM = 288,
74      TOPRIGHT_SYM = 289,
75      TOPRIGHTCORNER_SYM = 290,
76      BOTTOMLEFTCORNER_SYM = 291,
77      BOTTOMLEFT_SYM = 292,
78      BOTTOMCENTER_SYM = 293,
79      BOTTOMRIGHT_SYM = 294,
80      BOTTOMRIGHTCORNER_SYM = 295,
81      LEFTTOP_SYM = 296,
82      LEFTMIDDLE_SYM = 297,
83      LEFTBOTTOM_SYM = 298,
84      RIGHTTOP_SYM = 299,
85      RIGHTMIDDLE_SYM = 300,
86      RIGHTBOTTOM_SYM = 301,
87      ATKEYWORD = 302,
88      IMPORTANT_SYM = 303,
89      MEDIA_ONLY = 304,
90      MEDIA_NOT = 305,
91      MEDIA_AND = 306,
92      REMS = 307,
93      QEMS = 308,
94      EMS = 309,
95      EXS = 310,
96      PXS = 311,
97      DPIS = 312,
98      DPCMS = 313,
99      CMS = 314,
100      MMS = 315,
101      INS = 316,
102      PTS = 317,
103      PCS = 318,
104      DEGS = 319,
105      RADS = 320,
106      GRADS = 321,
107      TURNS = 322,
108      MSECS = 323,
109      SECS = 324,
110      HERTZ = 325,
111      KHERTZ = 326,
112      DIMEN = 327,
113      INVALIDDIMEN = 328,
114      PERCENTAGE = 329,
115      FLOATTOKEN = 330,
116      INTEGER = 331,
117      URI = 332,
118      FUNCTION = 333,
119      ANYFUNCTION = 334,
120      NOTFUNCTION = 335,
121      CALCFUNCTION = 336,
122      MINFUNCTION = 337,
123      MAXFUNCTION = 338,
124      UNICODERANGE = 339
125    };
126 #endif
127
128
129
130 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
131 typedef union YYSTYPE
132 {
133
134 /* Line 1676 of yacc.c  */
135 #line 64 "/home/jwagun/Desktop/tizen1-public/webkit-efl/Source/WebCore/css/CSSGrammar.y"
136
137     bool boolean;
138     char character;
139     int integer;
140     double number;
141     CSSParserString string;
142
143     CSSRule* rule;
144     CSSRuleList* ruleList;
145     CSSParserSelector* selector;
146     Vector<OwnPtr<CSSParserSelector> >* selectorList;
147     CSSSelector::MarginBoxType marginBox;
148     CSSSelector::Relation relation;
149     MediaList* mediaList;
150     MediaQuery* mediaQuery;
151     MediaQuery::Restrictor mediaQueryRestrictor;
152     MediaQueryExp* mediaQueryExp;
153     CSSParserValue value;
154     CSSParserValueList* valueList;
155     Vector<OwnPtr<MediaQueryExp> >* mediaQueryExpList;
156     WebKitCSSKeyframeRule* keyframeRule;
157     WebKitCSSKeyframesRule* keyframesRule;
158     float val;
159
160
161
162 /* Line 1676 of yacc.c  */
163 #line 164 "/home/jwagun/Desktop/tizen1-public/webkit-efl/DerivedSources/WebCore/CSSGrammar.h"
164 } YYSTYPE;
165 # define YYSTYPE_IS_TRIVIAL 1
166 # define yystype YYSTYPE /* obsolescent; will be withdrawn */
167 # define YYSTYPE_IS_DECLARED 1
168 #endif
169
170
171
172