Lines Matching refs:yytext
96 DPRINT("String: %s\n", yytext);
97 yylval.data = data_copy_escape_string(yytext+1,
148 DPRINT("Label: %s\n", yytext);
149 yylval.labelref = xstrdup(yytext);
156 DPRINT("Integer Literal: '%s'\n", yytext);
159 yylval.integer = strtoull(yytext, &e, 0);
163 yytext);
168 yytext);
178 DPRINT("Character literal: %s\n", yytext);
180 d = data_copy_escape_string(yytext+1, yyleng-2);
198 DPRINT("Ref: %s\n", yytext+1);
199 yylval.labelref = xstrdup(yytext+1);
204 yytext[yyleng-1] = '\0';
205 DPRINT("Ref: %s\n", yytext+2);
206 yylval.labelref = xstrdup(yytext+2);
211 yylval.byte = strtol(yytext, NULL, 16);
223 DPRINT("PropNodeName: %s\n", yytext);
224 yylval.propnodename = xstrdup((yytext[0] == '\\') ?
225 yytext + 1 : yytext);
249 DPRINT("Char: %c (\\x%02x)\n", yytext[0],
250 (unsigned)yytext[0]);
251 if (yytext[0] == '[') {
255 if ((yytext[0] == '{')
256 || (yytext[0] == ';')) {
260 return yytext[0];