Home
last modified time | relevance | path

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

/titanic_41/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.def148 #define isnext(n) (n->ctype == OJUMP && n->csub == JNEXT)
/titanic_41/usr/src/cmd/awk/
H A Drun.c159 if (isbreak(x) || isnext(x)) in program()
278 if (isexit(y) || isnext(y)) in call()
1395 if (isnext(x) || isexit(x) || isret(x)) in whilestat()
1411 if (isnext(x) || isexit(x) || isret(x)) in dostat()
1440 if (isnext(x) || isexit(x) || isret(x)) in forstat()
1472 if (isnext(x) || isexit(x) || isret(x)) { in instat()
H A Dawk.h234 #define isnext(n) ((n)->csub == JNEXT) macro