Lines Matching refs:cf
72 static bool reject; /* token(cf) gets symbol again */
78 #define token(cf) ((reject) ? (ACCEPT, symbol) : (symbol = yylex(cf)))
79 #define tpeek(cf) ((reject) ? (symbol) : (REJECT, symbol = yylex(cf)))
80 #define musthave(c,cf) do { if (token(cf) != (c)) syntaxerr(NULL); } while (/* CONSTCOND */ 0)
101 pipeline(int cf)
105 t = get_command(cf);
178 synio(int cf)
190 if (tpeek(cf) != REDIR)
260 get_command(int cf)
275 switch (c = token(cf|KEYWORD|sALIAS|VARASN)) {
291 cf = (t->u.evalflags ? ARRAYVAR : 0) |
293 switch (tpeek(cf)) {
295 while ((iop = synio(cf)) != NULL) {