Searched refs:stat2 (Results 1 – 3 of 3) sorted by relevance
/ndk/sources/host-tools/nawk-20071023/ |
D | awkgram.y | 175 pa_pat { $$ = stat2(PASTAT, $1, stat2(PRINT, rectonode(), NIL)); } 176 | pa_pat lbrace stmtlist '}' { $$ = stat2(PASTAT, $1, $3); } 177 | pa_pat ',' pa_pat { $$ = pa2stat($1, $3, stat2(PRINT, rectonode(), NIL)); } 179 | lbrace stmtlist '}' { $$ = stat2(PASTAT, NIL, $2); } 305 | DELETE varname '[' patlist ']' { $$ = stat2(DELETE, makearr($2), $4); } 306 | DELETE varname { $$ = stat2(DELETE, makearr($2), 0); } 322 { $$ = stat2(DO, $3, notnull($7)); } 338 | while {inloop++;} stmt { --inloop; $$ = stat2(WHILE, $1, $3); }
|
D | proto.h | 85 extern Node *stat2(int, Node *, Node *);
|
D | parse.c | 105 Node *stat2(int a, Node *b, Node *c) in stat2() function
|