Lines Matching refs:yytext
58 #define yytext ((const char*)SCNG(yy_text)) macro
60 #define yyless(x) do { YYCURSOR = (const unsigned char*)yytext + x; \
117 if (yytext[0] == ' ' || yytext[0] == '\t') { \
128 (ch != 'X' && yytext[yyleng - 1] == ch) || \
129 yytext[yyleng - 1] == '\n' || \
130 yytext[yyleng - 1] == '\r' || \
131 yytext[yyleng - 1] == '\t' || \
132 yytext[yyleng - 1] == ' ') \
391 if (yytext[0] == '\'' && yytext[yyleng - 1] == '\'') {
395 RETURN_TOKEN(TC_RAW, yytext, yyleng);
414 RETURN_TOKEN(TC_OFFSET, yytext, yyleng);
483 RETURN_TOKEN(TC_VARNAME, yytext, yyleng);
510 RETURN_TOKEN(TC_LABEL, yytext, yyleng);
538 if (yytext[0] == '"') {
558 if (yyleng > 1 && yytext[0] == '"' && yytext[yyleng - 1] == '"') {
563 RETURN_TOKEN(TC_RAW, yytext, yyleng);
567 RETURN_TOKEN(TC_RAW, yytext, yyleng);
577 RETURN_TOKEN(TC_CONSTANT, yytext, yyleng);
581 RETURN_TOKEN(TC_NUMBER, yytext, yyleng);
585 return yytext[0];
589 return yytext[0];
599 RETURN_TOKEN(TC_STRING, yytext, yyleng);
603 RETURN_TOKEN(TC_STRING, yytext, yyleng);
607 RETURN_TOKEN(TC_STRING, yytext, yyleng);
656 zend_ini_escape_string(ini_lval, yytext, yyleng, '"');
662 RETURN_TOKEN(TC_WHITESPACE, yytext, yyleng);