Home
last modified time | relevance | path

Searched refs:recursive (Results 1 – 25 of 80) sorted by path

1234

/php-src/Zend/Optimizer/
H A Dzend_call_graph.c192 call_info->recursive = 1; in zend_is_indirectly_recursive()
221 call_info->recursive = 1; in zend_analyze_recursion()
226 call_info->recursive = 1; in zend_analyze_recursion()
H A Dzend_call_graph.h37 bool recursive; member
H A Dzend_inference.c4557 int recursive, in zend_func_return_info() argument
4596 if (!recursive && ssa_op && info->ssa.var_info && in zend_func_return_info()
4598 info->ssa.var_info[ssa_op->op1_use].recursive) { in zend_func_return_info()
H A Dzend_ssa.h125 bool recursive : 1; member
/php-src/Zend/tests/
H A Dbug63882.phpt15 Fatal error: Nesting level too deep - recursive dependency? in %sbug63882.php on line 9
H A Dbug69388.phpt2 Bug #69388: Use after free on recursive calls to PHP compiler
H A Dbug69756.phpt2 Fixed bug #69756 (Fatal error: Nesting level too deep - recursive dependency? with ===).
H A Dbug72508.phpt2 Bug #72508 (strange references after recursive function call and "switch" statement)
H A Dbug78502.phpt2 Bug #78502: Incorrect stack size calculation for indirectly recursive function call
H A Dconstant_arrays.phpt31 $recursive = [];
32 $recursive[0] = &$recursive;
35 define('RECURSION', $recursive);
107 define(): Argument #2 ($value) cannot be a recursive array
H A Dexception_set_previous_leak.phpt2 Leak when setting recursive previous exception in finally handling
H A Dforeach_002.phpt2 Creating recursive array on foreach using same variable
H A Drecursive_debug_info.phpt2 Test recursive __debugInfo() method
H A Dstatic_variables_recursive.phpt2 Static variable with recursive initializer
/php-src/Zend/tests/fibers/
H A Dout-of-memory-in-recursive-fiber.phpt2 Out of Memory from recursive fiber creation
26 … %d bytes exhausted%s(tried to allocate %d bytes) in %sout-of-memory-in-recursive-fiber.php on lin…
/php-src/docs-old/
H A Dunix-build-system.md8 * slow recursive make replaced with one global Makefile
/php-src/docs/source/core/data-structures/
H A Dreference-counting.rst216 ``GC_PROTECTED`` flag. If the value is recursive, it prevents the same value from being visited
/php-src/ext/dom/
H A Ddocument.c757 bool recursive = 0; in PHP_METHOD() local
759 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "O|b", &node, dom_node_class_entry, &recursive) == FAIL… in PHP_METHOD()
775 retnodep = dom_clone_node(NULL, nodep, docp, recursive); in PHP_METHOD()
802 bool recursive = 0; in dom_modern_document_import_node() local
804 if (zend_parse_parameters(ZEND_NUM_ARGS(), "O|b", &node, node_ce, &recursive) != SUCCESS) { in dom_modern_document_import_node()
820 retnodep = dom_clone_node(php_dom_get_ns_mapper(intern), nodep, docp, recursive); in dom_modern_document_import_node()
H A Dnode.c1441 bool recursive = 0; in PHP_METHOD() local
1444 if (zend_parse_parameters(ZEND_NUM_ARGS(), "|b", &recursive) == FAILURE) { in PHP_METHOD()
1460 node = dom_clone_node(ns_mapper, n, n->doc, recursive); in PHP_METHOD()
H A Dphp_dom.c2420 …helper(php_dom_libxml_ns_mapper *ns_mapper, xmlNodePtr src_node, xmlDocPtr dst_doc, bool recursive) in dom_clone_helper() argument
2424 …if (!recursive || (src_node->type != XML_ELEMENT_NODE && src_node->type != XML_DOCUMENT_FRAG_NODE … in dom_clone_helper()
2493 …dom_clone_node(php_dom_libxml_ns_mapper *ns_mapper, xmlNodePtr node, xmlDocPtr doc, bool recursive) in dom_clone_node() argument
2505 xmlNodePtr clone = dom_clone_helper(ns_mapper, node, doc, recursive); in dom_clone_node()
2518 int extended_recursive = recursive; in dom_clone_node()
2519 if (!recursive && node->type == XML_ELEMENT_NODE) { in dom_clone_node()
H A Dphp_dom.h211 …om_clone_node(php_dom_libxml_ns_mapper *ns_mapper, xmlNodePtr node, xmlDocPtr doc, bool recursive);
/php-src/ext/dom/tests/
H A Dbug43364.phpt2 Bug #43364 (recursive xincludes don't remove internal xml nodes properly)
/php-src/ext/ffi/tests/
H A D018.phpt2 FFI 018: Indirectly recursive structure
/php-src/ext/ftp/
H A Dftp.c702 ftp_list(ftpbuf_t *ftp, const char *path, const size_t path_len, int recursive) in ftp_list() argument
704 …return ftp_genlist(ftp, ((recursive) ? "LIST -R" : "LIST"), ((recursive) ? sizeof("LIST -R")-1 : s… in ftp_list()
H A Dftp.h161 char** ftp_list(ftpbuf_t *ftp, const char *path, const size_t path_len, int recursive);

Completed in 78 milliseconds

1234