Lines Matching refs:token
41 %token T_TRUE "true"
42 %token T_FALSE "false"
44 %token T_EXPR_BOOL "boolean expression"
45 %token T_EXPR_STRING "string expression"
47 %token <cpVal> T_ERROR "error token"
49 %token <cpVal> T_DIGIT "number"
50 %token <cpVal> T_ID "identifier"
51 %token <cpVal> T_STRING "cstring"
52 %token <cpVal> T_REGEX "regex"
53 %token <cpVal> T_REGEX_I "case-indendent regex"
54 %token <num> T_REGEX_BACKREF "regex back reference"
55 %token <cpVal> T_OP_UNARY "unary operator"
56 %token <cpVal> T_OP_BINARY "binary operator"
58 %token T_STR_BEGIN "start of string"
59 %token T_STR_END "end of string"
60 %token T_VAR_BEGIN "start of variable name"
61 %token T_VAR_END "end of variable name"
63 %token T_OP_EQ "integer equal"
64 %token T_OP_NE "integer not equal"
65 %token T_OP_LT "integer less than"
66 %token T_OP_LE "integer less or equal"
67 %token T_OP_GT "integer greater than"
68 %token T_OP_GE "integer greater or equal"
69 %token T_OP_REG "regex match"
70 %token T_OP_NRE "regex non-match"
71 %token T_OP_IN "contained in"
72 %token T_OP_STR_EQ "string equal"
73 %token T_OP_STR_NE "string not equal"
74 %token T_OP_STR_LT "string less than"
75 %token T_OP_STR_LE "string less or equal"
76 %token T_OP_STR_GT "string greater than"
77 %token T_OP_STR_GE "string greater or equal"
78 %token T_OP_CONCAT "string concatenation"
80 %token T_OP_OR "logical or"
81 %token T_OP_AND "logical and"
82 %token T_OP_NOT "logical not"