Lines Matching refs:yytext
46 srcpos_update(&yylloc, yytext, yyleng); \
68 char *name = strchr(yytext, '\"') + 1;
69 yytext[yyleng-1] = '\0';
80 DPRINT("String: %s\n", yytext);
81 yylval.data = data_copy_escape_string(yytext+1,
100 DPRINT("Label: %s\n", yytext);
101 yylval.labelref = xstrdup(yytext);
107 yylval.literal = xstrdup(yytext);
113 DPRINT("Ref: %s\n", yytext+1);
114 yylval.labelref = xstrdup(yytext+1);
119 yytext[yyleng-1] = '\0';
120 DPRINT("Ref: %s\n", yytext+2);
121 yylval.labelref = xstrdup(yytext+2);
126 yylval.byte = strtol(yytext, NULL, 16);
138 DPRINT("PropNodeName: %s\n", yytext);
139 yylval.propnodename = xstrdup(yytext);
154 DPRINT("Char: %c (\\x%02x)\n", yytext[0],
155 (unsigned)yytext[0]);
156 if (yytext[0] == '[') {
160 if ((yytext[0] == '{')
161 || (yytext[0] == ';')) {
165 return yytext[0];