Home
last modified time | relevance | path

Searched refs:csub (Results 1 – 8 of 8) sorted by relevance

/illumos-gate/usr/src/cmd/awk/
H A Dawk.h121 uschar csub; /* CCON, CTEMP, CFLD, etc. */ member
266 #define isexit(n) ((n)->csub == JEXIT)
267 #define isbreak(n) ((n)->csub == JBREAK)
268 #define iscont(n) ((n)->csub == JCONT)
269 #define isnext(n) ((n)->csub == JNEXT || (n)->csub == JNEXTFILE)
270 #define isret(n) ((n)->csub == JRET)
277 #define istrue(n) ((n)->csub == BTRUE)
278 #define istemp(n) ((n)->csub == CTEMP)
H A Drun.c327 if (t->csub == CCOPY) { in call()
330 t->csub = CTEMP; in call()
340 t->csub = CTEMP; in call()
342 } else if (t == y && t->csub == CCOPY) { in call()
343 t->csub = CTEMP; in call()
370 y->csub = CCOPY; /* prevents freeing until call is over */ in copycell()
549 z->csub = CVAR; in array()
826 x->csub = CFLD; in indirect()
H A Dparse.c215 a->csub = b; in celltonode()
H A Dawk.g.y494 return isvalue(p) && ((Cell *) (p->narg[0]))->csub == CCON;
H A Dtran.c301 p->csub = CUNK; in setsymtab()
/illumos-gate/usr/src/cmd/oawk/
H A Dawk.def62 char csub; /* subtype of ctype */
143 #define isexit(n) (n->ctype == OJUMP && n->csub == JEXIT)
144 #define isbreak(n) (n->ctype == OJUMP && n->csub == JBREAK)
145 #define iscont(n) (n->ctype == OJUMP && n->csub == JCONT)
146 #define isnext(n) (n->ctype == OJUMP && n->csub == JNEXT)
149 #define istrue(n) (n->ctype == OBOOL && n->csub == BTRUE)
150 #define istemp(n) (n->ctype == OCELL && n->csub == CTEMP)
151 #define isfld(n) (!donefld && n->csub==CFLD && n->ctype==OCELL && \
153 #define isrec(n) (donefld && n->csub==CFLD && n->ctype==OCELL && \
H A Drun.c203 y->csub = CVAR; in arrayel()
352 x->csub = CFLD; in indirect()
1169 x->csub = a->subtype; in nodetoobj()
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/sh/
H A Dlex.c1598 int off, messages=0, assignok=lp->assignok, csub; in comsub() local
1601 csub = lp->comsub; in comsub()
1719 lp->comsub = csub; in comsub()