Home
last modified time | relevance | path

Searched refs:recursive (Results 51 – 75 of 80) sorted by relevance

1234

/php-src/ext/simplexml/
H A Dsimplexml.c1438 static void sxe_add_namespaces(php_sxe_object *sxe, xmlNodePtr node, bool recursive, zval *return_v… in sxe_add_namespaces() argument
1454 if (recursive) { in sxe_add_namespaces()
1458 sxe_add_namespaces(sxe, node, recursive, return_value); in sxe_add_namespaces()
1468 bool recursive = 0; in PHP_METHOD() local
1472 if (zend_parse_parameters(ZEND_NUM_ARGS(), "|b", &recursive) == FAILURE) { in PHP_METHOD()
1484 sxe_add_namespaces(sxe, node, recursive, return_value); in PHP_METHOD()
1516 if (recursive) { in sxe_add_registered_namespaces()
1519 sxe_add_registered_namespaces(sxe, node, recursive, include_xmlns_attributes, return_value); in sxe_add_registered_namespaces()
1530 bool recursive = 0, from_root = 1; in PHP_METHOD() local
1534 if (zend_parse_parameters(ZEND_NUM_ARGS(), "|bb", &recursive, &from_root) == FAILURE) { in PHP_METHOD()
[all …]
/php-src/ext/ftp/
H A Dftp.stub.php96 …function ftp_rawlist(FTP\Connection $ftp, string $directory, bool $recursive = false): array|false…
H A Dphp_ftp.c490 bool recursive = 0; in PHP_FUNCTION() local
492 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Os|b", &z_ftp, php_ftp_ce, &dir, &dir_len, &recursive)… in PHP_FUNCTION()
498 if (NULL == (llist = ftp_list(ftp, dir, dir_len, recursive))) { in PHP_FUNCTION()
H A Dftp_arginfo.h74 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, recursive, _IS_BOOL, 0, "false")
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()
/php-src/ext/spl/tests/
H A Ddualiterator.inc163 * And if both do then a recursive comparison is being used.
/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 Dphp_dom.h211 …om_clone_node(php_dom_libxml_ns_mapper *ns_mapper, xmlNodePtr node, xmlDocPtr doc, bool recursive);
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 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()
/php-src/Zend/Optimizer/
H A Dzend_ssa.h125 bool recursive : 1; member
/php-src/ext/standard/tests/general_functions/
H A Ddebug_zval_dump_o.phpt73 $this->class_object5 = $this; //recursive reference
H A Dprint_r.phpt192 $this->class_object5 = $this; //recursive reference
H A Dprint_r_64bit.phpt196 $this->class_object5 = $this; //recursive reference
H A Dvar_dump.phpt190 $this->class_object5 = $this; //recursive reference
H A Dvar_dump_64bit.phpt190 $this->class_object5 = $this; //recursive reference
/php-src/docs-old/
H A Dunix-build-system.md8 * slow recursive make replaced with one global Makefile
/php-src/ext/pcre/pcre2lib/
H A Dpcre2_dfa_match.c2884 if (mb->recursive != NULL) in internal_dfa_match()
2963 for (dfa_recursion_info *ri = mb->recursive; in internal_dfa_match()
2978 new_recursive.prevrec = mb->recursive; in internal_dfa_match()
2979 mb->recursive = &new_recursive; in internal_dfa_match()
2994 mb->recursive = new_recursive.prevrec; /* Done this recursion */ in internal_dfa_match()
4025 mb->recursive = NULL; in pcre2_dfa_match()
H A Dpcre2_intmodedep.h934 dfa_recursion_info *recursive; /* Linked list of pattern recursion data */ member
/php-src/ext/standard/
H A Dftp_fopen_wrapper.c1026 int result, recursive = options & PHP_STREAM_MKDIR_RECURSIVE; in php_stream_ftp_mkdir() local
1044 if (!recursive) { in php_stream_ftp_mkdir()
H A Dfile.c1151 bool recursive = 0; in PHP_FUNCTION() local
1158 Z_PARAM_BOOL(recursive) in PHP_FUNCTION()
1164 …RETURN_BOOL(php_stream_mkdir(dir, (int)mode, (recursive ? PHP_STREAM_MKDIR_RECURSIVE : 0) | REPORT… in PHP_FUNCTION()
H A Darray.c1461 php_array_walk_context *context, zval *array, zval *userdata, bool recursive) in php_array_walk() argument
1532 if (recursive && Z_TYPE_P(Z_REFVAL_P(zv)) == IS_ARRAY) { in php_array_walk()
1548 result = php_array_walk(context, zv, userdata, recursive); in php_array_walk()
4199 …always_inline void php_array_replace_wrapper(INTERNAL_FUNCTION_PARAMETERS, int recursive) /* {{{ */ argument
4231 if (recursive) {
4249 static zend_always_inline void php_array_merge_wrapper(INTERNAL_FUNCTION_PARAMETERS, int recursive)… argument
4353 if (recursive) {
/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/sapi/phpdbg/
H A Dphpdbg_watch.c127 …PHPDBG_COMMAND_D_EX(recursive, "create recursive watchpoints", 'r', watch_recursive, &phpdbg_pro…
1413 PHPDBG_WATCH(recursive) /* {{{ */ argument
/php-src/ext/standard/tests/array/
H A Dbug34066_1.phpt2 Bug #34066 (recursive array_walk causes segfault)

Completed in 263 milliseconds

1234