Home
last modified time | relevance | path

Searched refs:isnext (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/cmd/oawk/
H A Drun.c147 if (isbreak(x) || isnext(x) || iscont(x)) in program()
951 if (isnext(x) || isexit(x)) in whilestat()
982 if (isnext(x) || isexit(x)) in forstat()
1016 if (isnext(x) || isexit(x)) in instat()
H A Dawk.def146 #define isnext(n) (n->ctype == OJUMP && n->csub == JNEXT)
/illumos-gate/usr/src/cmd/awk/
H A Drun.c223 if (isbreak(x) || isnext(x) || iscont(x)) in program()
349 if (isexit(y) || isnext(y)) in call()
1616 if (isnext(x) || isexit(x) || isret(x)) in whilestat()
1632 if (isnext(x) || isexit(x) || isret(x)) in dostat()
1661 if (isnext(x) || isexit(x) || isret(x)) in forstat()
1699 if (isnext(x) || isexit(x) || isret(x)) { in instat()
H A Dawk.h269 #define isnext(n) ((n)->csub == JNEXT || (n)->csub == JNEXTFILE) macro