Lines Matching refs:op2
103 conditional BOR conditional { $$ = op2(BOR, $1, $3); }
104 | conditional AND conditional { $$ = op2(AND, $1, $3); }
111 pattern BOR pattern { $$ = op2(BOR, $1, $3); }
112 | pattern AND pattern { $$ = op2(AND, $1, $3); }
120 $$ = op2(NE, $1,
147 $$ = op2($2, $1, makedfa($3)); }
156 | VAR '[' expr ']' { $$ = op2(ARRAY, $1, $3); }
163 $$ = op2(FNCN, $1,
167 $$ = op2(FNCN, $1,
170 | FNCN '(' expr ')' { $$ = op2(FNCN, $1, $3); }
181 { $$ = op2(INDEX, $3, $5); }
183 | term '+' term { $$ = op2(ADD, $1, $3); }
184 | term '-' term { $$ = op2(MINUS, $1, $3); }
185 | term '*' term { $$ = op2(MULT, $1, $3); }
186 | term '/' term { $$ = op2(DIVIDE, $1, $3); }
187 | term '%' term { $$ = op2(MOD, $1, $3); }
199 | expr term { $$ = op2(CAT, $1, $2); }
200 | var ASGNOP expr { $$ = op2($2, $1, $3); }
229 $$ = op2(MATCH,
268 CHAR { $$ = op2(CHAR, (NODE *) 0, $1); }
269 | DOT { $$ = op2(DOT, (NODE *) 0, (NODE *) 0); }
270 | CCL { $$ = op2(CCL, (NODE *) 0, cclenter($1)); }
271 | NCCL { $$ = op2(NCCL, (NODE *) 0, cclenter($1)); }
272 | '^' { $$ = op2(CHAR, (NODE *) 0, HAT); }
273 | '$' { $$ = op2(CHAR, (NODE *) 0, (NODE *) 0); }
274 | r OR r { $$ = op2(OR, $1, $3); }
276 { $$ = op2(CAT, $1, $2); }
277 | r STAR { $$ = op2(STAR, $1, (NODE *) 0); }
278 | r PLUS { $$ = op2(PLUS, $1, (NODE *) 0); }
279 | r QUEST { $$ = op2(QUEST, $1, (NODE *) 0); }
286 { $$ = op2($2, $1, $3); }