Searched refs:celltonode (Results 1 – 4 of 4) sorted by relevance
/external/one-true-awk/ |
D | awkgram.y | 373 | CALL '(' ')' { $$ = op2(CALL, celltonode($1,CVAR), NIL); } 374 | CALL '(' patlist ')' { $$ = op2(CALL, celltonode($1,CVAR), $3); } 398 | NUMBER { $$ = celltonode($1, CCON); } 406 | string { $$ = celltonode($1, CCON); } 433 | IVAR { $$ = op1(INDIRECT, celltonode($1, CVAR)); } 439 | VAR { arglist = $$ = celltonode($1,CVAR); } 442 arglist = $$ = linkum($1,celltonode($3,CVAR)); } 446 VAR { $$ = celltonode($1, CVAR); }
|
D | parse.c | 168 Node *celltonode(Cell *a, int b) in celltonode() function 182 return op1(INDIRECT, celltonode(literal0, CUNK)); in rectonode()
|
D | proto.h | 85 extern Node *celltonode(Cell *, int);
|
D | tran.c | 78 nullnode = celltonode(nullloc, CCON); in syminit()
|