Searched refs:source_string (Results 1 – 10 of 10) sorted by relevance
/PHP-8.4/ext/zend_test/tests/ |
H A D | zend_test_compile_string.phpt | 12 $source_string = <<<EOF 18 zend_test_compile_string($source_string, 'Source string', ZEND_COMPILE_POSITION_AT_SHEBANG); 20 $source_string = <<<EOF 26 zend_test_compile_string($source_string, 'Source string', ZEND_COMPILE_POSITION_AT_OPEN_TAG); 28 $source_string = <<<EOF 33 zend_test_compile_string($source_string, 'Source string', ZEND_COMPILE_POSITION_AT_OPEN_TAG); 35 $source_string = <<<EOF 39 zend_test_compile_string($source_string, 'Source string', ZEND_COMPILE_POSITION_AFTER_OPEN_TAG); 41 $source_string = <<<EOF 46 zend_test_compile_string($source_string, 'Source string', ZEND_COMPILE_POSITION_AFTER_OPEN_TAG);
|
/PHP-8.4/sapi/phpdbg/ |
H A D | phpdbg_list.c | 312 zend_op_array *phpdbg_compile_string(zend_string *source_string, const char *filename, zend_compile… in phpdbg_compile_string() argument 320 return PHPDBG_G(compile_string)(source_string, filename, position); in phpdbg_compile_string() 323 dataptr = emalloc(sizeof(phpdbg_file_source) + sizeof(uint32_t) * ZSTR_LEN(source_string)); in phpdbg_compile_string() 324 dataptr->buf = estrndup(ZSTR_VAL(source_string), ZSTR_LEN(source_string)); in phpdbg_compile_string() 325 dataptr->len = ZSTR_LEN(source_string); in phpdbg_compile_string() 335 op_array = PHPDBG_G(compile_string)(source_string, filename, position); in phpdbg_compile_string()
|
H A D | phpdbg.h | 274 …zend_op_array *(*compile_string)(zend_string *source_string, const char *filename, zend_compile_po…
|
/PHP-8.4/sapi/fuzzer/ |
H A D | fuzzer-execute-common.h | 68 zend_string *source_string, const char *filename, zend_compile_position position);
|
/PHP-8.4/ext/zend_test/ |
H A D | test.stub.php | 212 … function zend_test_compile_string(string $source_string, string $filename, int $position): void {} argument
|
H A D | test.c | 246 zend_string *source_string = NULL; in ZEND_FUNCTION() local 251 Z_PARAM_STR(source_string) in ZEND_FUNCTION() 258 op_array = compile_string(source_string, ZSTR_VAL(filename), position); in ZEND_FUNCTION()
|
H A D | test_arginfo.h | 14 ZEND_ARG_TYPE_INFO(0, source_string, IS_STRING, 0)
|
/PHP-8.4/Zend/ |
H A D | zend_compile.h | 863 extern ZEND_API zend_op_array *(*zend_compile_string)(zend_string *source_string, const char *filen… 928 ZEND_API zend_op_array *compile_string(zend_string *source_string, const char *filename, zend_compi…
|
H A D | zend_language_scanner.l | 784 zend_op_array *compile_string(zend_string *source_string, const char *filename, zend_compile_positi… in compile_string() argument 791 if (ZSTR_LEN(source_string) == 0) { in compile_string() 795 ZVAL_STR_COPY(&tmp, source_string); in compile_string()
|
H A D | zend_compile.c | 88 ZEND_API zend_op_array *(*zend_compile_string)(zend_string *source_string, const char *filename, ze…
|
Completed in 70 milliseconds