Home
last modified time | relevance | path

Searched refs:LEXOUT (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/unbound/util/
H A Dconfiglexer.lex28 #define LEXOUT(s) printf s /* used ONLY when debugging */ macro
30 #define LEXOUT(s) macro
40 LEXOUT(("v(%s%d) ", ub_c_text, num_args)); \
102 LEXOUT(("switch_to_include_file(%s)\n", filename)); in config_start_include()
214 LEXOUT(("SP ")); /* ignore */ }
217 LEXOUT(("comment(%s) ", ub_c_text)); /* ignore */ }
601 <INITIAL,val>{NEWLINE} { LEXOUT(("NL\n")); cfg_parser->line++; }
604 <val>\" { BEGIN(quotedstring); LEXOUT(("QS ")); }
610 <quotedstring>{DQANY}* { LEXOUT(("STR(%s) ", ub_c_text)); yymore(); }
614 LEXOUT(("QE "));
[all …]
H A Dconfiglexer.c4338 #define LEXOUT(s) printf s /* used ONLY when debugging */
4340 #define LEXOUT(s) macro
4350 LEXOUT(("v(%s%d) ", yytext, num_args)); \
4412 LEXOUT(("switch_to_include_file(%s)\n", filename)); in config_start_include()
4800 LEXOUT(("SP ")); /* ignore */ }
4807 LEXOUT(("comment(%s) ", yytext)); /* ignore */ }
6684 { LEXOUT(("NL\n")); cfg_parser->line++; }
6690 { BEGIN(quotedstring); LEXOUT(("QS ")); }
6703 { LEXOUT(("STR(%s) ", yytext)); yymore(); }
6716 LEXOUT(("QE "));
[all …]