Lines Matching refs:cf
62 static int reject; /* token(cf) gets symbol again */
67 #define token(cf) ((reject) ? (ACCEPT, symbol) : (symbol = yylex(cf)))
68 #define tpeek(cf) ((reject) ? (symbol) : (REJECT, symbol = yylex(cf)))
69 #define musthave(c,cf) do { if (token(cf) != (c)) syntaxerr(NULL); } while (0)
87 pipeline(int cf)
91 t = get_command(cf);
161 synio(int cf)
173 if (tpeek(cf) != REDIR)
226 get_command(int cf)
239 switch (c = token(cf|KEYWORD|ALIAS|VARASN)) {
254 cf = (t->u.evalflags ? ARRAYVAR : 0) |
256 switch (tpeek(cf)) {
258 while ((iop = synio(cf)) != NULL) {