Home
last modified time | relevance | path

Searched refs:linkum (Results 1 – 5 of 5) sorted by relevance

/illumos-gate/usr/src/cmd/awk/
H A Dawk.g.y214 { beginloc = linkum(beginloc, $3); $$ = 0; }
216 { endloc = linkum(endloc, $3); $$ = 0; }
223 | pa_stats opt_pst pa_stat { $$ = linkum($1, $3); }
228 | patlist comma pattern { $$ = linkum($1, $3); }
286 pattern comma pattern { $$ = linkum($1, $3); }
287 | plist comma pattern { $$ = linkum($1, $3); }
292 | pplist comma ppattern { $$ = linkum($1, $3); }
377 | stmtlist stmt { $$ = linkum($1, $2); }
464 arglist = $$ = linkum($1,celltonode($3,CVAR)); }
H A Dparse.c261 linkum(Node *a, Node *b) in linkum() function
H A Dawk.h257 extern Node *linkum(Node *, Node *), *celltonode(Cell *, int);
/illumos-gate/usr/src/cmd/oawk/
H A Dawk.g.y221 pa_stats pa_stat st { $$ = linkum($1, $2); }
223 | pa_stats pa_stat { $$ = linkum($1, $2); }
248 expr ',' expr {$$ = linkum($1, $3); }
249 | pe_list ',' expr {$$ = linkum($1, $3); }
330 stat_list statement { $$ = linkum($1, $2); }
H A Dparse.c222 NODE *linkum(NODE *a, NODE *b) in linkum() function