Lines Matching refs:yytext
58 #define yytext ((char*)SCNG(yy_text)) macro
60 #define yyless(x) do { YYCURSOR = (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] == ' ') \
413 if (yytext[0] == '\'' && yytext[yyleng - 1] == '\'') {
417 RETURN_TOKEN(TC_RAW, yytext, yyleng);
436 RETURN_TOKEN(TC_OFFSET, yytext, yyleng);
456 RETURN_TOKEN(TC_VARNAME, yytext, yyleng);
483 RETURN_TOKEN(TC_LABEL, yytext, yyleng);
511 if (yytext[0] == '"') {
531 if (yyleng > 1 && yytext[0] == '"' && yytext[yyleng - 1] == '"') {
536 RETURN_TOKEN(TC_RAW, yytext, yyleng);
540 RETURN_TOKEN(TC_RAW, yytext, yyleng);
550 RETURN_TOKEN(TC_CONSTANT, yytext, yyleng);
554 RETURN_TOKEN(TC_NUMBER, yytext, yyleng);
558 return yytext[0];
562 return yytext[0];
572 RETURN_TOKEN(TC_STRING, yytext, yyleng);
576 RETURN_TOKEN(TC_STRING, yytext, yyleng);
625 zend_ini_escape_string(ini_lval, yytext, yyleng, '"');
630 RETURN_TOKEN(TC_WHITESPACE, yytext, yyleng);