webengine/osswebengine/DerivedSources/WebCore/CSSGrammar.h
changeset 0 dd21522fd290
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/webengine/osswebengine/DerivedSources/WebCore/CSSGrammar.h	Mon Mar 30 12:54:55 2009 +0300
@@ -0,0 +1,187 @@
+#ifndef CSSGrammar_h
+#define CSSGrammar_h
+/* A Bison parser, made by GNU Bison 2.3.  */
+
+/* Skeleton interface for Bison's Yacc-like parsers in C
+
+   Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
+   Free Software Foundation, Inc.
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 2, or (at your option)
+   any later version.
+
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program; if not, write to the Free Software
+   Foundation, Inc., 51 Franklin Street, Fifth Floor,
+   Boston, MA 02110-1301, USA.  */
+
+/* As a special exception, you may create a larger work that contains
+   part or all of the Bison parser skeleton and distribute that work
+   under terms of your choice, so long as that work isn't itself a
+   parser generator using the skeleton or a modified version thereof
+   as a parser skeleton.  Alternatively, if you modify or redistribute
+   the parser skeleton itself, you may (at your option) remove this
+   special exception, which will cause the skeleton and the resulting
+   Bison output files to be licensed under the GNU General Public
+   License without this special exception.
+
+   This special exception was added by the Free Software Foundation in
+   version 2.2 of Bison.  */
+
+/* Tokens.  */
+#ifndef YYTOKENTYPE
+# define YYTOKENTYPE
+   /* Put the tokens into the symbol table, so that GDB and other debuggers
+      know about them.  */
+   enum yytokentype {
+     UNIMPORTANT_TOK = 258,
+     WHITESPACE = 259,
+     SGML_CD = 260,
+     INCLUDES = 261,
+     DASHMATCH = 262,
+     BEGINSWITH = 263,
+     ENDSWITH = 264,
+     CONTAINS = 265,
+     STRING = 266,
+     IDENT = 267,
+     HEX = 268,
+     IDSEL = 269,
+     IMPORT_SYM = 270,
+     PAGE_SYM = 271,
+     MEDIA_SYM = 272,
+     FONT_FACE_SYM = 273,
+     CHARSET_SYM = 274,
+     NAMESPACE_SYM = 275,
+     WEBKIT_RULE_SYM = 276,
+     WEBKIT_DECLS_SYM = 277,
+     WEBKIT_VALUE_SYM = 278,
+     WEBKIT_MEDIAQUERY_SYM = 279,
+     IMPORTANT_SYM = 280,
+     MEDIA_ONLY = 281,
+     MEDIA_NOT = 282,
+     MEDIA_AND = 283,
+     QEMS = 284,
+     EMS = 285,
+     EXS = 286,
+     PXS = 287,
+     CMS = 288,
+     MMS = 289,
+     INS = 290,
+     PTS = 291,
+     PCS = 292,
+     DEGS = 293,
+     RADS = 294,
+     GRADS = 295,
+     MSECS = 296,
+     SECS = 297,
+     HERZ = 298,
+     KHERZ = 299,
+     DIMEN = 300,
+     PERCENTAGE = 301,
+     FLOATTOKEN = 302,
+     INTEGER = 303,
+     URI = 304,
+     FUNCTION = 305,
+     NOTFUNCTION = 306,
+     UNICODERANGE = 307
+   };
+#endif
+/* Tokens.  */
+#define UNIMPORTANT_TOK 258
+#define WHITESPACE 259
+#define SGML_CD 260
+#define INCLUDES 261
+#define DASHMATCH 262
+#define BEGINSWITH 263
+#define ENDSWITH 264
+#define CONTAINS 265
+#define STRING 266
+#define IDENT 267
+#define HEX 268
+#define IDSEL 269
+#define IMPORT_SYM 270
+#define PAGE_SYM 271
+#define MEDIA_SYM 272
+#define FONT_FACE_SYM 273
+#define CHARSET_SYM 274
+#define NAMESPACE_SYM 275
+#define WEBKIT_RULE_SYM 276
+#define WEBKIT_DECLS_SYM 277
+#define WEBKIT_VALUE_SYM 278
+#define WEBKIT_MEDIAQUERY_SYM 279
+#define IMPORTANT_SYM 280
+#define MEDIA_ONLY 281
+#define MEDIA_NOT 282
+#define MEDIA_AND 283
+#define QEMS 284
+#define EMS 285
+#define EXS 286
+#define PXS 287
+#define CMS 288
+#define MMS 289
+#define INS 290
+#define PTS 291
+#define PCS 292
+#define DEGS 293
+#define RADS 294
+#define GRADS 295
+#define MSECS 296
+#define SECS 297
+#define HERZ 298
+#define KHERZ 299
+#define DIMEN 300
+#define PERCENTAGE 301
+#define FLOATTOKEN 302
+#define INTEGER 303
+#define URI 304
+#define FUNCTION 305
+#define NOTFUNCTION 306
+#define UNICODERANGE 307
+
+
+
+
+#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
+typedef union YYSTYPE
+#line 128 "/cygdrive/z/sf/mw/web/WEBENG~1/OSSWEB~1/WebCore/css/CSSGrammar.y"
+{
+    CSSRule* rule;
+    CSSSelector* selector;
+    bool ok;
+    MediaList *mediaList;
+    CSSMediaRule* mediaRule;
+    CSSRuleList* ruleList;
+    ParseString string;
+    float val;
+    int prop_id;
+    int attribute;
+    CSSSelector::Relation relation;
+    bool b;
+    int i;
+    char tok;
+    Value value;
+    ValueList* valueList;
+
+    MediaQuery* mediaQuery;
+    MediaQueryExp* mediaQueryExp;
+    Vector<MediaQueryExp*>* mediaQueryExpList;
+    MediaQuery::Restrictor mediaQueryRestrictor;
+}
+/* Line 1489 of yacc.c.  */
+#line 177 "CSSGrammar.hpp"
+	YYSTYPE;
+# define yystype YYSTYPE /* obsolescent; will be withdrawn */
+# define YYSTYPE_IS_DECLARED 1
+# define YYSTYPE_IS_TRIVIAL 1
+#endif
+
+
+
+#endif