Lines Matching refs:yytext
102 DPRINT("String: %s\n", yytext);
103 yylval.data = data_copy_escape_string(yytext+1,
142 DPRINT("Label: %s\n", yytext);
143 yylval.labelref = xstrdup(yytext);
149 yylval.literal = xstrdup(yytext);
155 yytext[yyleng-1] = '\0';
156 yylval.literal = xstrdup(yytext+1);
162 DPRINT("Ref: %s\n", yytext+1);
163 yylval.labelref = xstrdup(yytext+1);
168 yytext[yyleng-1] = '\0';
169 DPRINT("Ref: %s\n", yytext+2);
170 yylval.labelref = xstrdup(yytext+2);
175 yylval.byte = strtol(yytext, NULL, 16);
187 DPRINT("PropNodeName: %s\n", yytext);
188 yylval.propnodename = xstrdup((yytext[0] == '\\') ?
189 yytext + 1 : yytext);
213 DPRINT("Char: %c (\\x%02x)\n", yytext[0],
214 (unsigned)yytext[0]);
215 if (yytext[0] == '[') {
219 if ((yytext[0] == '{')
220 || (yytext[0] == ';')) {
224 return yytext[0];