Lines Matching refs:yytext
54 yylastch = yytext;
57 yylastch = yytext+yyleng;
79 if(yylastch > &yytext[YYLMAX]) {
84 if (yylastch >= &yytext[ yytextsz ]) {
85 int x = yylastch - yytext;
88 if (yytext == yy_tbuf) {
89 yytext = (char *) malloc(yytextsz);
90 memcpy(yytext, yy_tbuf, sizeof (yy_tbuf));
93 yytext = (char *) realloc(yytext, yytextsz);
94 if (!yytext) {
96 "Cannot realloc yytext\n");
99 yylastch = yytext + x;
199 yyleng = yylastch-yytext+1;
200 yytext[yyleng] = 0;
204 sprint(yytext);
212 if (yytext[0] == 0 /* && feof(yyin) */)
218 yyprevious = yytext[0] = input();
222 yyprevious = yytext[0] = lex_input();
226 yylastch=yytext;