KDECore
yacc.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037 #ifndef YYTOKENTYPE
00038 # define YYTOKENTYPE
00039
00040
00041 enum yytokentype {
00042 NOT = 258,
00043 EQ = 259,
00044 EQI = 260,
00045 NEQ = 261,
00046 NEQI = 262,
00047 LEQ = 263,
00048 GEQ = 264,
00049 LE = 265,
00050 GR = 266,
00051 OR = 267,
00052 AND = 268,
00053 TOKEN_IN = 269,
00054 TOKEN_IN_SUBSTRING = 270,
00055 MATCH_INSENSITIVE = 271,
00056 TOKEN_IN_INSENSITIVE = 272,
00057 TOKEN_IN_SUBSTRING_INSENSITIVE = 273,
00058 EXIST = 274,
00059 MAX = 275,
00060 MIN = 276,
00061 VAL_BOOL = 277,
00062 VAL_STRING = 278,
00063 VAL_ID = 279,
00064 VAL_NUM = 280,
00065 VAL_FLOAT = 281
00066 };
00067 #endif
00068
00069 #define NOT 258
00070 #define EQ 259
00071 #define EQI 260
00072 #define NEQ 261
00073 #define NEQI 262
00074 #define LEQ 263
00075 #define GEQ 264
00076 #define LE 265
00077 #define GR 266
00078 #define OR 267
00079 #define AND 268
00080 #define TOKEN_IN 269
00081 #define TOKEN_IN_SUBSTRING 270
00082 #define MATCH_INSENSITIVE 271
00083 #define TOKEN_IN_INSENSITIVE 272
00084 #define TOKEN_IN_SUBSTRING_INSENSITIVE 273
00085 #define EXIST 274
00086 #define MAX 275
00087 #define MIN 276
00088 #define VAL_BOOL 277
00089 #define VAL_STRING 278
00090 #define VAL_ID 279
00091 #define VAL_NUM 280
00092 #define VAL_FLOAT 281
00093
00094
00095
00096
00097 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
00098 typedef union YYSTYPE
00099 #line 15 "yacc.y"
00100 {
00101 char valb;
00102 int vali;
00103 double vald;
00104 char *name;
00105 void *ptr;
00106 }
00107
00108 #line 109 "yacc.h"
00109 YYSTYPE;
00110 # define yystype YYSTYPE
00111 # define YYSTYPE_IS_DECLARED 1
00112 # define YYSTYPE_IS_TRIVIAL 1
00113 #endif
00114
00115 extern YYSTYPE kiotraderlval;
00116