Searched refs:LANG_SCNG (Results 1 – 8 of 8) sorted by relevance
/PHP-8.0/Zend/ |
H A D | zend_highlight.c | 62 if (LANG_SCNG(output_filter)) { in zend_html_puts() 63 LANG_SCNG(output_filter)(&filtered, &filtered_len, ptr, len); in zend_html_puts() 78 if (LANG_SCNG(output_filter)) { in zend_html_puts() 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_globals_macros.h | 50 # define LANG_SCNG(v) ZEND_TSRMG_FAST(language_scanner_globals_offset, zend_php_scanner_globals *, … macro 54 # define LANG_SCNG(v) (language_scanner_globals.v) macro
|
H A D | zend_language_scanner.l | 84 #define SCNG LANG_SCNG 418 if ((pos1 = memchr(LANG_SCNG(script_org), 0, LANG_SCNG(script_org_size)))) { in zend_multibyte_detect_unicode() 420 pos2 = LANG_SCNG(script_org); in zend_multibyte_detect_unicode() 458 return zend_multibyte_detect_utf_encoding(LANG_SCNG(script_org), LANG_SCNG(script_org_size)); in zend_multibyte_detect_unicode() 501 LANG_SCNG(input_filter) = NULL; in zend_multibyte_set_filter() 502 LANG_SCNG(output_filter) = NULL; in zend_multibyte_set_filter() 510 LANG_SCNG(input_filter) = NULL; in zend_multibyte_set_filter() 518 LANG_SCNG(output_filter) = NULL; in zend_multibyte_set_filter() 520 LANG_SCNG(input_filter) = NULL; in zend_multibyte_set_filter() 687 LANG_SCNG(yy_state) = yycINITIAL; in zend_compile_string_to_ast() [all …]
|
H A D | zend_multibyte.c | 170 return LANG_SCNG(script_encoding); in zend_multibyte_get_script_encoding()
|
H A D | zend_language_parser.y | 1174 %empty { $$ = LANG_SCNG(yy_text); } 1504 if (LANG_SCNG(yy_text)[0] == 0 && 1505 LANG_SCNG(yy_leng) == 1 && 1548 tokcontent = LANG_SCNG(yy_text); 1549 tokcontent_len = LANG_SCNG(yy_leng);
|
H A D | zend_compile.c | 653 if (LANG_SCNG(on_event)) { in zend_stop_lexing() 654 LANG_SCNG(on_event)(ON_STOP, END, 0, NULL, 0, LANG_SCNG(on_event_context)); in zend_stop_lexing() 657 LANG_SCNG(yy_cursor) = LANG_SCNG(yy_limit); in zend_stop_lexing() 5885 old_input_filter = LANG_SCNG(input_filter); in zend_handle_encoding_declaration() 5886 old_encoding = LANG_SCNG(script_encoding); in zend_handle_encoding_declaration() 5890 if (old_input_filter != LANG_SCNG(input_filter) || in zend_handle_encoding_declaration()
|
H A D | zend_ast.c | 127 ast->lex_pos = LANG_SCNG(yy_text); in zend_ast_create_decl()
|
/PHP-8.0/ext/tokenizer/ |
H A D | tokenizer.c | 34 #define zendtext LANG_SCNG(yy_text) 35 #define zendleng LANG_SCNG(yy_leng) 36 #define zendcursor LANG_SCNG(yy_cursor) 37 #define zendlimit LANG_SCNG(yy_limit) 325 ZVAL_LONG(OBJ_PROP_NUM(obj, 3), text - LANG_SCNG(yy_start)); in add_token() 363 LANG_SCNG(yy_state) = yycINITIAL; in tokenize() 471 if (LANG_SCNG(yy_cursor) != LANG_SCNG(yy_limit)) { in on_event() 473 LANG_SCNG(yy_limit) - LANG_SCNG(yy_cursor), CG(zend_lineno), in on_event() 504 LANG_SCNG(yy_state) = yycINITIAL; in tokenize_parse() 505 LANG_SCNG(on_event) = on_event; in tokenize_parse() [all …]
|
Completed in 77 milliseconds