~ubuntu-branches/ubuntu/gutsy/kde4libs/gutsy

« back to all changes in this revision

Viewing changes to khtml/css/parser.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2007-02-21 11:00:12 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070221110012-6kw8khr9knv6lmg1
Tags: 3.80.3-0ubuntu1
New upstream unstable release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* A Bison parser, made by GNU Bison 1.875d.  */
2
 
 
3
 
/* Skeleton parser for Yacc-like parsing with Bison,
4
 
   Copyright 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
 
1
/* A Bison parser, made by GNU Bison 2.3.  */
 
2
 
 
3
/* Skeleton interface for Bison's Yacc-like parsers in C
 
4
 
 
5
   Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
 
6
   Free Software Foundation, Inc.
5
7
 
6
8
   This program is free software; you can redistribute it and/or modify
7
9
   it under the terms of the GNU General Public License as published by
15
17
 
16
18
   You should have received a copy of the GNU General Public License
17
19
   along with this program; if not, write to the Free Software
18
 
   Foundation, Inc., 59 Temple Place - Suite 330,
19
 
   Boston, MA 02111-1307, USA.  */
20
 
 
21
 
/* As a special exception, when this file is copied by Bison into a
22
 
   Bison output file, you may use that output file without restriction.
23
 
   This special exception was added by the Free Software Foundation
24
 
   in version 1.24 of Bison.  */
 
20
   Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
21
   Boston, MA 02110-1301, USA.  */
 
22
 
 
23
/* As a special exception, you may create a larger work that contains
 
24
   part or all of the Bison parser skeleton and distribute that work
 
25
   under terms of your choice, so long as that work isn't itself a
 
26
   parser generator using the skeleton or a modified version thereof
 
27
   as a parser skeleton.  Alternatively, if you modify or redistribute
 
28
   the parser skeleton itself, you may (at your option) remove this
 
29
   special exception, which will cause the skeleton and the resulting
 
30
   Bison output files to be licensed under the GNU General Public
 
31
   License without this special exception.
 
32
 
 
33
   This special exception was added by the Free Software Foundation in
 
34
   version 2.2 of Bison.  */
25
35
 
26
36
/* Tokens.  */
27
37
#ifndef YYTOKENTYPE
69
79
     KHERZ = 295,
70
80
     DIMEN = 296,
71
81
     PERCENTAGE = 297,
72
 
     NUMBER = 298,
73
 
     URI = 299,
74
 
     FUNCTION = 300,
75
 
     NOTFUNCTION = 301,
76
 
     UNICODERANGE = 302
 
82
     FLOAT = 298,
 
83
     INTEGER = 299,
 
84
     URI = 300,
 
85
     FUNCTION = 301,
 
86
     NOTFUNCTION = 302,
 
87
     UNICODERANGE = 303
77
88
   };
78
89
#endif
 
90
/* Tokens.  */
79
91
#define UNIMPORTANT_TOK 258
80
92
#define S 259
81
93
#define SGML_CD 260
116
128
#define KHERZ 295
117
129
#define DIMEN 296
118
130
#define PERCENTAGE 297
119
 
#define NUMBER 298
120
 
#define URI 299
121
 
#define FUNCTION 300
122
 
#define NOTFUNCTION 301
123
 
#define UNICODERANGE 302
124
 
 
125
 
 
126
 
 
127
 
 
128
 
#if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
129
 
 
130
 
typedef union YYSTYPE {
 
131
#define FLOAT 298
 
132
#define INTEGER 299
 
133
#define URI 300
 
134
#define FUNCTION 301
 
135
#define NOTFUNCTION 302
 
136
#define UNICODERANGE 303
 
137
 
 
138
 
 
139
 
 
140
 
 
141
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
 
142
typedef union YYSTYPE
 
143
 
 
144
{
131
145
    CSSRuleImpl *rule;
132
146
    CSSSelector *selector;
133
147
    Q3PtrList<CSSSelector> *selectorList;
147
161
    char tok;
148
162
    Value value;
149
163
    ValueList *valueList;
150
 
} YYSTYPE;
151
 
/* Line 1285 of yacc.c.  */
 
164
}
 
165
/* Line 1529 of yacc.c.  */
152
166
 
 
167
        YYSTYPE;
153
168
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
154
169
# define YYSTYPE_IS_DECLARED 1
155
170
# define YYSTYPE_IS_TRIVIAL 1
157
172
 
158
173
 
159
174
 
160
 
 
161