Home
last modified time | relevance | path

Searched refs:CVAR (Results 1 – 6 of 6) sorted by relevance

/dragonfly/bin/sh/pregenerated/
HDsyntax.c26 [SYNBASE + '$'] = CVAR,
55 [SYNBASE + '$'] = CVAR,
114 [SYNBASE + '$'] = CVAR,
HDsyntax.h18 #define CVAR 9 /* a dollar sign */ macro
/dragonfly/contrib/awk/
HDawkgram.y373 | CALL '(' ')' { $$ = op2(CALL, celltonode($1,CVAR), NIL); }
374 | CALL '(' patlist ')' { $$ = op2(CALL, celltonode($1,CVAR), $3); }
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); }
HDawk.h185 #define CVAR 2 macro
HDrun.c528 z->csub = CVAR; in array()
/dragonfly/bin/sh/
HDparser.c1519 case CVAR: /* '$' */ in readtoken1()