Home
last modified time | relevance | path

Searched refs:source_string (Results 1 – 10 of 10) sorted by relevance

/PHP-8.2/ext/zend_test/tests/
H A Dzend_test_compile_string.phpt12 $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.2/sapi/phpdbg/
H A Dphpdbg_list.c312 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 Dphpdbg.h274 …zend_op_array *(*compile_string)(zend_string *source_string, const char *filename, zend_compile_po…
/PHP-8.2/sapi/fuzzer/
H A Dfuzzer-execute-common.h68 zend_string *source_string, const char *filename, zend_compile_position position);
/PHP-8.2/ext/zend_test/
H A Dtest.stub.php125 … function zend_test_compile_string(string $source_string, string $filename, int $position): void {} argument
H A Dtest.c230 zend_string *source_string = NULL; in ZEND_FUNCTION() local
235 Z_PARAM_STR(source_string) in ZEND_FUNCTION()
242 op_array = compile_string(source_string, ZSTR_VAL(filename), position); in ZEND_FUNCTION()
H A Dtest_arginfo.h14 ZEND_ARG_TYPE_INFO(0, source_string, IS_STRING, 0)
/PHP-8.2/Zend/
H A Dzend_compile.h781 extern ZEND_API zend_op_array *(*zend_compile_string)(zend_string *source_string, const char *filen…
833 ZEND_API zend_op_array *compile_string(zend_string *source_string, const char *filename, zend_compi…
H A Dzend_language_scanner.l784 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 Dzend_compile.c84 ZEND_API zend_op_array *(*zend_compile_string)(zend_string *source_string, const char *filename, ze…

Completed in 62 milliseconds