Home | History | Annotate | Download | only in nawk-20071023

Lines Matching refs:term

65 %type	<p>	pas pattern ppattern plist pplist patlist prarg term re
214 | ppattern term %prec CAT { $$ = op2(CAT, $1, $2); }
216 | term
247 | pattern term %prec CAT { $$ = op2(CAT, $1, $2); }
249 | term
295 print prarg '|' term {
298 | print prarg APPEND term {
301 | print prarg GT term {
351 term:
352 term '/' ASGNOP term { $$ = op2(DIVEQ, $1, $4); }
353 | term '+' term { $$ = op2(ADD, $1, $3); }
354 | term '-' term { $$ = op2(MINUS, $1, $3); }
355 | term '*' term { $$ = op2(MULT, $1, $3); }
356 | term '/' term { $$ = op2(DIVIDE, $1, $3); }
357 | term '%' term { $$ = op2(MOD, $1, $3); }
358 | term POWER term { $$ = op2(POWER, $1, $3); }
359 | '-' term %prec UMINUS { $$ = op1(UMINUS, $2); }
360 | '+' term %prec UMINUS { $$ = $2; }
361 | NOT term %prec UMINUS { $$ = op1(NOT, notnull($2)); }
367 | CLOSE term { $$ = op1(CLOSE, $2); }
372 | GETLINE var LT term { $$ = op3(GETLINE, $2, itonp($3), $4); }
373 | GETLINE LT term { $$ = op3(GETLINE, NIL, itonp($2), $3); }
423 | INDIRECT term { $$ = op1(INDIRECT, $2); }