Lines Matching refs:yytext
111 DPRINT("String: %s\n", yytext);
112 yylval.data = data_copy_escape_string(yytext+1,
156 DPRINT("Label: %s\n", yytext);
157 yylval.labelref = xstrdup(yytext);
164 DPRINT("Integer Literal: '%s'\n", yytext);
167 yylval.integer = strtoull(yytext, &e, 0);
171 yytext);
176 yytext);
186 DPRINT("Character literal: %s\n", yytext);
188 d = data_copy_escape_string(yytext+1, yyleng-2);
206 DPRINT("Ref: %s\n", yytext+1);
207 yylval.labelref = xstrdup(yytext+1);
212 yytext[yyleng-1] = '\0';
213 DPRINT("Ref: %s\n", yytext+2);
214 yylval.labelref = xstrdup(yytext+2);
219 yylval.byte = strtol(yytext, NULL, 16);
231 DPRINT("PropNodeName: %s\n", yytext);
232 yylval.propnodename = xstrdup((yytext[0] == '\\') ?
233 yytext + 1 : yytext);
257 DPRINT("Char: %c (\\x%02x)\n", yytext[0],
258 (unsigned)yytext[0]);
259 if (yytext[0] == '[') {
263 if ((yytext[0] == '{')
264 || (yytext[0] == ';')) {
268 return yytext[0];