Lines Matching refs:TC_NEWLINE
217 #define TC_NEWLINE (1 << 15) macro
257 if (n & TC_NEWLINE ) debug_printf_parse(" NEWLINE" ); in debug_parse_print_tc()
295 | TC_SEMICOL | TC_NEWLINE)
301 | TC_SEMICOL | TC_NEWLINE | TC_LBRACE)
652 t_tclass = TC_NEWLINE; \
1195 if ((tc & (expected | TS_WORD | TC_NEWLINE)) in next_token()
1265 if ((last_token_class & TS_NOTERM) && (tc & TC_NEWLINE)) in next_token()
1287 syntax_error((last_token_class & (TC_NEWLINE | TC_EOF)) ? in next_token()
1486 | TC_NEWLINE /* length<newline> */ in parse_expr()
1532 n->l.n = parse_expr(TC_SEMICOL | TC_NEWLINE | TC_RBRACE); in chain_expr()
1570 if (tc == TC_NEWLINE) in chain_until_rbrace()
1586 } while (tc == TC_NEWLINE); in chain_group()
1663 n->l.n = parse_expr(TC_SEMICOL | TC_NEWLINE | TC_OUTRDR | TC_RBRACE); in chain_group()
1666 n->r.n = parse_expr(TC_SEMICOL | TC_NEWLINE | TC_RBRACE); in chain_group()
1707 | TC_EOF | TC_NEWLINE /* but not TC_SEMICOL */); in parse_program()
1713 if (tclass == TC_NEWLINE) { in parse_program()
1762 while (next_token(TC_LBRACE | TC_NEWLINE) == TC_NEWLINE) in parse_program()
1775 cn->l.n = parse_expr(TC_SEMICOL | TC_NEWLINE | TC_EOF | TC_LBRACE); in parse_program()
1793 | TC_EOF | TC_NEWLINE | TC_SEMICOL); in parse_program()