Lines Matching defs:LEXOUT
27 #define LEXOUT(s) printf s /* used ONLY when debugging */
29 #define LEXOUT(s)
39 LEXOUT(("v(%s%d) ", yytext, num_args)); \
101 LEXOUT(("switch_to_include_file(%s)\n", filename));
213 LEXOUT(("SP ")); /* ignore */ }
216 LEXOUT(("comment(%s) ", yytext)); /* ignore */ }
591 <INITIAL,val>{NEWLINE} { LEXOUT(("NL\n")); cfg_parser->line++; }
594 <val>\" { BEGIN(quotedstring); LEXOUT(("QS ")); }
600 <quotedstring>{DQANY}* { LEXOUT(("STR(%s) ", yytext)); yymore(); }
604 LEXOUT(("QE "));
615 <val>\' { BEGIN(singlequotedstr); LEXOUT(("SQS ")); }
621 <singlequotedstr>{SQANY}* { LEXOUT(("STR(%s) ", yytext)); yymore(); }
625 LEXOUT(("SQE "));
637 LEXOUT(("v(%s) ", yytext)); inc_prev = YYSTATE; BEGIN(include); }
642 <include>{SPACE}* { LEXOUT(("ISP ")); /* ignore */ }
643 <include>{NEWLINE} { LEXOUT(("NL\n")); cfg_parser->line++;}
644 <include>\" { LEXOUT(("IQS ")); BEGIN(include_quoted); }
646 LEXOUT(("Iunquotedstr(%s) ", yytext));
654 <include_quoted>{DQANY}* { LEXOUT(("ISTR(%s) ", yytext)); yymore(); }
658 LEXOUT(("IQE "));
664 LEXOUT(("LEXEOF "));
678 LEXOUT(("v(%s) ", yytext)); inc_prev = YYSTATE; BEGIN(include_toplevel);
684 <include_toplevel>{SPACE}* { LEXOUT(("ITSP ")); /* ignore */ }
685 <include_toplevel>{NEWLINE} { LEXOUT(("NL\n")); cfg_parser->line++; }
686 <include_toplevel>\" { LEXOUT(("ITQS ")); BEGIN(include_toplevel_quoted); }
688 LEXOUT(("ITunquotedstr(%s) ", yytext));
697 <include_toplevel_quoted>{DQANY}* { LEXOUT(("ITSTR(%s) ", yytext)); yymore(); }
703 LEXOUT(("ITQE "));
710 <val>{UNQUOTEDLETTER}* { LEXOUT(("unquotedstr(%s) ", yytext));