Home
last modified time | relevance | path

Searched refs:stat3 (Results 1 – 3 of 3) sorted by relevance

/external/one-true-awk/
Dawkgram.y100 winner = (Node *)stat3(PROGRAM, beginloc, $1, endloc); }
130 { --inloop; $$ = stat3(IN, $3, makearr($5), $8); }
298 else $$ = stat3($1, $2, itonp($3), $4); }
301 else $$ = stat3($1, $2, itonp($3), $4); }
304 else $$ = stat3($1, $2, itonp($3), $4); }
305 | print prarg { $$ = stat3($1, $2, NIL, NIL); }
327 | if stmt else stmt { $$ = stat3(IF, $1, $2, $4); }
328 | if stmt { $$ = stat3(IF, $1, $2, NIL); }
Dproto.h77 extern Node *stat3(int, Node *, Node *, Node *);
Dparse.c114 Node *stat3(int a, Node *b, Node *c, Node *d) in stat3() function