Home
last modified time | relevance | path

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

/ndk/sources/host-tools/nawk-20071023/
Dawkgram.y99 winner = (Node *)stat3(PROGRAM, beginloc, $1, endloc); }
129 { --inloop; $$ = stat3(IN, $3, makearr($5), $8); }
297 else $$ = stat3($1, $2, itonp($3), $4); }
300 else $$ = stat3($1, $2, itonp($3), $4); }
303 else $$ = stat3($1, $2, itonp($3), $4); }
304 | print prarg { $$ = stat3($1, $2, NIL, NIL); }
326 | if stmt else stmt { $$ = stat3(IF, $1, $2, $4); }
327 | if stmt { $$ = stat3(IF, $1, $2, NIL); }
Dproto.h81 extern Node *stat3(int, Node *, Node *, Node *);
Dparse.c114 Node *stat3(int a, Node *b, Node *c, Node *d) in stat3() function