Searched refs:yy_text (Results 1 – 10 of 10) sorted by relevance
/PHP-8.2/Zend/ |
H A D | zend_highlight.c | 122 zend_html_puts((char*)LANG_SCNG(yy_text), LANG_SCNG(yy_leng)); /* no color needed */ in zend_highlight() 145 zend_html_puts((char*)LANG_SCNG(yy_text), LANG_SCNG(yy_leng)); in zend_highlight() 194 zend_write((char*)LANG_SCNG(yy_text), LANG_SCNG(yy_leng)); in zend_strip() 197 zend_write((char*)LANG_SCNG(yy_text), LANG_SCNG(yy_leng)); in zend_strip() 205 zend_write((char*)LANG_SCNG(yy_text), LANG_SCNG(yy_leng)); in zend_strip()
|
H A D | zend_ini_scanner.l | 58 #define yytext ((char*)SCNG(yy_text)) 118 SCNG(yy_text)++; \ 357 SCNG(yy_text) = YYCURSOR; in ini_lex() 414 SCNG(yy_text)++; 523 yyleng = sc - SCNG(yy_text); 525 yyleng = YYCURSOR - SCNG(yy_text); 532 SCNG(yy_text)++; 594 unsigned char *s = SCNG(yy_text); 623 yyleng = YYCURSOR - SCNG(yy_text);
|
H A D | zend_language_scanner.l | 219 lex_state->yy_text = SCNG(yy_text); in zend_save_lexical_state() 258 SCNG(yy_text) = lex_state->yy_text; in zend_restore_lexical_state() 893 SCNG(yy_text) = new_yy_start + (SCNG(yy_text) - SCNG(yy_start)); in zend_multibyte_yyinput_again() 1355 SCNG(yy_text) = YYCURSOR; in lex_scan() 2283 yyleng = YYCURSOR - SCNG(yy_text); 2392 yyleng = YYCURSOR - SCNG(yy_text); 2421 yyleng = YYCURSOR - SCNG(yy_text); 2585 YYCURSOR = SCNG(yy_text) + yyleng; 2820 yyleng = YYCURSOR - SCNG(yy_text); 2866 yyleng = YYCURSOR - SCNG(yy_text); [all …]
|
H A D | zend_language_scanner.h | 26 unsigned char *yy_text; member
|
H A D | zend_globals.h | 296 unsigned char *yy_text; member 322 unsigned char *yy_text; member
|
H A D | zend_language_parser.y | 1257 %empty { $$ = LANG_SCNG(yy_text); } 1594 if (LANG_SCNG(yy_text)[0] == 0 && 1646 tokcontent = LANG_SCNG(yy_text);
|
H A D | zend_ast.c | 124 ast->lex_pos = LANG_SCNG(yy_text); in zend_ast_create_decl()
|
/PHP-8.2/ext/ffi/ |
H A D | ffi.g | 61 #define yy_text FFI_G(text) 794 ( ?{!zend_ffi_is_typedef_name((const char*)yy_text, yy_pos - yy_text)} 806 ( ?{zend_ffi_is_typedef_name((const char*)yy_text, yy_pos - yy_text)} 844 {*name = (const char*)yy_text; *name_len = yy_pos - yy_text;} 849 {zend_ffi_val_number(val, 8, (const char*)yy_text, yy_pos - yy_text);} 854 {zend_ffi_val_number(val, 10, (const char*)yy_text, yy_pos - yy_text);} 859 {zend_ffi_val_number(val, 16, (const char*)yy_text + 2, yy_pos - yy_text - 2);} 864 {zend_ffi_val_float_number(val, (const char*)yy_text, yy_pos - yy_text);} 869 {zend_ffi_val_string(val, (const char*)yy_text, yy_pos - yy_text);} 874 {zend_ffi_val_character(val, (const char*)yy_text, yy_pos - yy_text);} [all …]
|
H A D | ffi_parser.c | 31 #define yy_text FFI_G(text) macro 380 yy_text = YYPOS; in get_skip_sym() 1946 save_text = yy_text; in synpred_1() 1950 yy_text = save_text; in synpred_1() 1962 save_text = yy_text; in synpred_2() 1966 yy_text = save_text; in synpred_2() 3548 *name = (const char*)yy_text; *name_len = yy_pos - yy_text; in parse_ID() 3557 zend_ffi_val_number(val, 8, (const char*)yy_text, yy_pos - yy_text); in parse_OCTNUMBER() 3566 zend_ffi_val_number(val, 10, (const char*)yy_text, yy_pos - yy_text); in parse_DECNUMBER() 3593 zend_ffi_val_string(val, (const char*)yy_text, yy_pos - yy_text); in parse_STRING() [all …]
|
/PHP-8.2/ext/tokenizer/ |
H A D | tokenizer.c | 36 #define zendtext LANG_SCNG(yy_text)
|
Completed in 64 milliseconds