Searched refs:rectonode (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/one-true-awk/ |
H A D | awkgram.y | 176 pa_pat { $$ = stat2(PASTAT, $1, stat2(PRINT, rectonode(), NIL)); } 178 | pa_pat ',' opt_nl pa_pat { $$ = pa2stat($1, $4, stat2(PRINT, rectonode(), NIL)); } 266 /* empty */ { $$ = rectonode(); } 285 { $$ = op3(MATCH, NIL, rectonode(), (Node*)makedfa($1, 0)); free($1); } 370 | BLTIN '(' ')' { $$ = op2(BLTIN, itonp($1), rectonode()); } 372 | BLTIN { $$ = op2(BLTIN, itonp($1), rectonode()); } 381 { $$ = op5(GENSUB, NIL, (Node*)makedfa($3, 1), $5, $7, rectonode()); } 384 $$ = op5(GENSUB, NIL, (Node *)makedfa(strnode($3), 1), $5, $7, rectonode()); 387 $$ = op5(GENSUB, (Node *)1, $3, $5, $7, rectonode()); 426 { $$ = op4($1, NIL, (Node*)makedfa($3, 1), $5, rectonode()); free($3); } [all …]
|
H A D | proto.h | 84 extern Node *rectonode(void);
|
H A D | parse.c | 202 Node *rectonode(void) /* make $0 into a Node */ in rectonode() function
|