Lines Matching defs:word

96 %type   <exVal>   word
123 | T_OP_UNARY word { $$ = ap_expr_unary_op_make( $1, $2, ctx); }
124 | word T_OP_BINARY word { $$ = ap_expr_binary_op_make($2, $1, $3, ctx); }
129 comparison: word T_OP_EQ word { $$ = ap_expr_make(op_EQ, $1, $3, ctx); }
130 | word T_OP_NE word { $$ = ap_expr_make(op_NE, $1, $3, ctx); }
131 | word T_OP_LT word { $$ = ap_expr_make(op_LT, $1, $3, ctx); }
132 | word T_OP_LE word { $$ = ap_expr_make(op_LE, $1, $3, ctx); }
133 | word T_OP_GT word { $$ = ap_expr_make(op_GT, $1, $3, ctx); }
134 | word T_OP_GE word { $$ = ap_expr_make(op_GE, $1, $3, ctx); }
135 | word T_OP_STR_EQ word { $$ = ap_expr_make(op_STR_EQ, $1, $3, ctx); }
136 | word T_OP_STR_NE word { $$ = ap_expr_make(op_STR_NE, $1, $3, ctx); }
137 | word T_OP_STR_LT word { $$ = ap_expr_make(op_STR_LT, $1, $3, ctx); }
138 | word T_OP_STR_LE word { $$ = ap_expr_make(op_STR_LE, $1, $3, ctx); }
139 | word T_OP_STR_GT word { $$ = ap_expr_make(op_STR_GT, $1, $3, ctx); }
140 | word T_OP_STR_GE word { $$ = ap_expr_make(op_STR_GE, $1, $3, ctx); }
141 | word T_OP_IN wordlist { $$ = ap_expr_make(op_IN, $1, $3, ctx); }
142 | word T_OP_REG regex { $$ = ap_expr_make(op_REG, $1, $3, ctx); }
143 | word T_OP_NRE regex { $$ = ap_expr_make(op_NRE, $1, $3, ctx); }
150 words : word { $$ = ap_expr_make(op_ListElement, $1, NULL, ctx); }
151 | words ',' word { $$ = ap_expr_make(op_ListElement, $3, $1, ctx); }
168 word : T_DIGIT { $$ = ap_expr_make(op_Digit, $1, NULL, ctx); }
169 | word T_OP_CONCAT word { $$ = ap_expr_make(op_Concat, $1, $3, ctx); }
204 lstfunccall : T_ID '(' word ')' { $$ = ap_expr_list_func_make($1, $3, ctx); }
207 strfunccall : T_ID '(' word ')' { $$ = ap_expr_str_func_make($1, $3, ctx); }