Lines Matching refs:yytext
112 DPRINT("String: %s\n", yytext);
113 yylval.data = data_copy_escape_string(yytext+1,
157 DPRINT("Label: %s\n", yytext);
158 yylval.labelref = xstrdup(yytext);
165 DPRINT("Integer Literal: '%s'\n", yytext);
168 yylval.integer = strtoull(yytext, &e, 0);
172 yytext);
177 yytext);
187 DPRINT("Character literal: %s\n", yytext);
189 d = data_copy_escape_string(yytext+1, yyleng-2);
207 DPRINT("Ref: %s\n", yytext+1);
208 yylval.labelref = xstrdup(yytext+1);
213 yytext[yyleng-1] = '\0';
214 DPRINT("Ref: %s\n", yytext+2);
215 yylval.labelref = xstrdup(yytext+2);
220 yylval.byte = strtol(yytext, NULL, 16);
232 DPRINT("PropNodeName: %s\n", yytext);
233 yylval.propnodename = xstrdup((yytext[0] == '\\') ?
234 yytext + 1 : yytext);
258 DPRINT("Char: %c (\\x%02x)\n", yytext[0],
259 (unsigned)yytext[0]);
260 if (yytext[0] == '[') {
264 if ((yytext[0] == '{')
265 || (yytext[0] == ';')) {
269 return yytext[0];