Home
last modified time | relevance | path

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

/titanic_44/usr/src/cmd/awk/
H A Dawk.g.y191 { beginloc = linkum(beginloc, $3); $$ = 0; }
193 { endloc = linkum(endloc, $3); $$ = 0; }
200 | pa_stats opt_pst pa_stat { $$ = linkum($1, $3); }
205 | patlist comma pattern { $$ = linkum($1, $3); }
265 pattern comma pattern { $$ = linkum($1, $3); }
266 | plist comma pattern { $$ = linkum($1, $3); }
271 | pplist comma ppattern { $$ = linkum($1, $3); }
338 | stmtlist stmt { $$ = linkum($1, $2); }
421 | varlist comma VAR { arglist = $$ = linkum($1,valtonode($3,CVAR)); }
H A Dparse.c235 linkum(Node *a, Node *b) in linkum() function
H A Dawk.h222 extern Node *linkum(Node *, Node *), *valtonode(Cell *, int);
/titanic_44/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.c224 NODE *linkum(a, b) NODE *a, *b; in linkum() function