Lines Matching refs:yytext
80 <INITIAL>[;,{}()] return *yytext;
89 sscanf(&yytext[1], "%o", &v);
96 sscanf(&yytext[2], "%x", &v);
100 <INITIAL,nchar,subs>\\. { yylval.ch = yytext[1]; return CHAR; }
101 <INITIAL,nchar,subs>. { yylval.ch = *yytext; return CHAR; }
160 if (!isascii(*yytext) || !isprint(*yytext))
162 *yytext, line_no, s);
165 line_no, s, *yytext);
166 *ptr++ = *yytext;
223 sscanf(&yytext[2], "%x", &v);
229 sscanf(&yytext[1], "%o", &v);
235 line_no, yytext[1]);
236 *ptr++ = yytext[1];
241 line_no, *yytext);
242 *ptr++ = *yytext;
246 strcat(map_name, yytext);