Lines Matching refs:yytext
82 <INITIAL>[;,{}()] return *yytext;
91 sscanf(&yytext[1], "%o", &v);
98 sscanf(&yytext[2], "%x", &v);
102 <INITIAL,nchar,subs>\\. { yylval.ch = yytext[1]; return CHAR; }
103 <INITIAL,nchar,subs>. { yylval.ch = *yytext; return CHAR; }
162 if (!isascii(*yytext) || !isprint(*yytext))
164 *yytext, line_no, s);
167 line_no, s, *yytext);
168 *ptr++ = *yytext;
225 sscanf(&yytext[2], "%x", &v);
231 sscanf(&yytext[1], "%o", &v);
237 line_no, yytext[1]);
238 *ptr++ = yytext[1];
243 line_no, *yytext);
244 *ptr++ = *yytext;
248 strcat(map_name, yytext);