Home
last modified time | relevance | path

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

1234

/PHP-8.3/ext/simplexml/
H A Dsimplexml.c1469 static void sxe_add_namespaces(php_sxe_object *sxe, xmlNodePtr node, bool recursive, zval *return_v… in sxe_add_namespaces() argument
1485 if (recursive) { in sxe_add_namespaces()
1489 sxe_add_namespaces(sxe, node, recursive, return_value); in sxe_add_namespaces()
1528 bool recursive = 0; in PHP_METHOD() local
1532 if (zend_parse_parameters(ZEND_NUM_ARGS(), "|b", &recursive) == FAILURE) { in PHP_METHOD()
1544 sxe_add_namespaces(sxe, node, recursive, return_value); in PHP_METHOD()
1562 if (recursive) { in sxe_add_registered_namespaces()
1565 sxe_add_registered_namespaces(sxe, node, recursive, return_value); in sxe_add_registered_namespaces()
1576 bool recursive = 0, from_root = 1; in PHP_METHOD() local
1580 if (zend_parse_parameters(ZEND_NUM_ARGS(), "|bb", &recursive, &from_root) == FAILURE) { in PHP_METHOD()
[all …]
/PHP-8.3/ext/ftp/
H A Dftp.stub.php96 …function ftp_rawlist(FTP\Connection $ftp, string $directory, bool $recursive = false): array|false…
H A Dphp_ftp.c501 bool recursive = 0; in PHP_FUNCTION() local
503 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Os|b", &z_ftp, php_ftp_ce, &dir, &dir_len, &recursive)… in PHP_FUNCTION()
509 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.c706 ftp_list(ftpbuf_t *ftp, const char *path, const size_t path_len, int recursive) in ftp_list() argument
708 …return ftp_genlist(ftp, ((recursive) ? "LIST -R" : "LIST"), ((recursive) ? sizeof("LIST -R")-1 : s… in ftp_list()
/PHP-8.3/ext/spl/tests/
H A Ddualiterator.inc163 * And if both do then a recursive comparison is being used.
/PHP-8.3/Zend/Optimizer/
H A Dzend_ssa.h125 bool recursive : 1; member
H A Dzend_inference.c4424 int recursive, in zend_func_return_info() argument
4463 if (!recursive && ssa_op && info->ssa.var_info && in zend_func_return_info()
4465 info->ssa.var_info[ssa_op->op1_use].recursive) { in zend_func_return_info()
/PHP-8.3/ext/standard/tests/general_functions/
H A Ddebug_zval_dump_o.phpt71 $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-8.3/docs/
H A Dunix-build-system.md8 * slow recursive make replaced with one global Makefile
/PHP-8.3/ext/pcre/pcre2lib/
H A Dpcre2_dfa_match.c2837 if (mb->recursive != NULL) in internal_dfa_match()
2917 for (ri = mb->recursive; ri != NULL; ri = ri->prevrec) in internal_dfa_match()
2926 new_recursive.prevrec = mb->recursive; in internal_dfa_match()
2927 mb->recursive = &new_recursive; in internal_dfa_match()
2942 mb->recursive = new_recursive.prevrec; /* Done this recursion */ in internal_dfa_match()
3973 mb->recursive = NULL; in pcre2_dfa_match()
H A Dpcre2_intmodedep.h929 dfa_recursion_info *recursive; /* Linked list of recursion data */ member
/PHP-8.3/ext/dom/
H A Ddocument.c778 bool recursive = 0; in PHP_METHOD() local
782 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "O|b", &node, dom_node_class_entry, &recursive) == FAIL… in PHP_METHOD()
799 extended_recursive = recursive; in PHP_METHOD()
800 if ((recursive == 0) && (nodep->type == XML_ELEMENT_NODE)) { in PHP_METHOD()
H A Dnode.c1319 bool recursive = 0; in PHP_METHOD() local
1322 if (zend_parse_parameters(ZEND_NUM_ARGS(), "|b", &recursive) == FAILURE) { in PHP_METHOD()
1328 node = xmlDocCopyNode(n, n->doc, recursive); in PHP_METHOD()
1336 if (n->type == XML_ELEMENT_NODE && recursive == 0) { in PHP_METHOD()
/PHP-8.3/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.c1155 bool recursive = 0; in PHP_FUNCTION() local
1162 Z_PARAM_BOOL(recursive) in PHP_FUNCTION()
1168 …RETURN_BOOL(php_stream_mkdir(dir, (int)mode, (recursive ? PHP_STREAM_MKDIR_RECURSIVE : 0) | REPORT… in PHP_FUNCTION()
H A Darray.c1383 php_array_walk_context *context, zval *array, zval *userdata, bool recursive) in php_array_walk() argument
1454 if (recursive && Z_TYPE_P(Z_REFVAL_P(zv)) == IS_ARRAY) { in php_array_walk()
1470 result = php_array_walk(context, zv, userdata, recursive); in php_array_walk()
4078 …always_inline void php_array_replace_wrapper(INTERNAL_FUNCTION_PARAMETERS, int recursive) /* {{{ */ argument
4110 if (recursive) {
4128 static zend_always_inline void php_array_merge_wrapper(INTERNAL_FUNCTION_PARAMETERS, int recursive)… argument
4232 if (recursive) {
H A Dbasic_functions.stub.php2796 function mkdir(string $directory, int $permissions = 0777, bool $recursive = false, $context = null…
/PHP-8.3/sapi/phpdbg/
H A Dphpdbg_watch.c126 …PHPDBG_COMMAND_D_EX(recursive, "create recursive watchpoints", 'r', watch_recursive, &phpdbg_pro…
1421 PHPDBG_WATCH(recursive) /* {{{ */ argument
/PHP-8.3/ext/standard/tests/array/
H A Dbug34066_1.phpt2 Bug #34066 (recursive array_walk causes segfault)
H A Dbug34066.phpt2 Bug #34066 (recursive array_walk causes segfault)

Completed in 116 milliseconds

1234