Home
last modified time | relevance | path

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

/original-bsd/old/awk/
H A Dawk.g.y53 begin pa_stats end { if (errorflag==0) winner = (node *)stat3(PROGRAM, $1, $2, $3); }
238 { PUTS("print>stat"); $$ = stat3($1, $2, $3, $4); }
240 { PUTS("print list"); $$ = stat3($1, $2, nullstat, nullstat); }
242 { PUTS("printf>stat"); $$ = stat3($1, $2, $3, $4); }
244 { PUTS("printf list"); $$ = stat3($1, $2, nullstat, nullstat); }
252 | if statement { PUTS("if stat"); $$ = stat3(IF, $1, $2, nullstat); }
254 { PUTS("if-else stat"); $$ = stat3(IF, $1, $2, $4); }
280 { PUTS("for(v in v)"); $$ = stat3(IN, $3, $5, $8); }
H A Dparse.c79 node *stat3(a,b,c,d) node *b, *c, *d; in stat3() function
/original-bsd/contrib/awk.research/
H A Dproto.h72 extern Node *stat3(int, Node *, Node *, Node *);