Home
last modified time | relevance | path

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

1234

/PHP-7.3/ext/spl/internal/
H A Drecursivecachingiterator.inc13 * @brief Cached recursive iteration over another Iterator
H A Drecursivefilteriterator.inc13 * @brief Iterator to filter recursive iterators
H A Drecursiveiteratoriterator.inc13 * @brief Iterates through recursive iterators
/PHP-7.3/ext/standard/tests/file/
H A Dmkdir_rmdir_error.phpt5 /* Prototype: bool mkdir ( string $pathname [, int $mode [, bool $recursive [, resource $context]]…
H A Dmkdir_variation5.phpt12 /* Prototype : bool mkdir(string pathname [, int mode [, bool recursive [, resource context]]])
H A Dmkdir_variation1-win32.phpt12 /* Prototype : bool mkdir(string pathname [, int mode [, bool recursive [, resource context]]])
H A Dmkdir_variation1.phpt12 /* Prototype : bool mkdir(string pathname [, int mode [, bool recursive [, resource context]]])
H A Dmkdir_rmdir_variation2.phpt21 /* Prototype: bool mkdir ( string $pathname [, int $mode [, bool $recursive [, resource $context]]…
H A Dmkdir_variation5-win32.phpt12 /* Prototype : bool mkdir(string pathname [, int mode [, bool recursive [, resource context]]])
H A Dmkdir_variation2.phpt9 /* Prototype : bool mkdir(string pathname [, int mode [, bool recursive [, resource context]]])
/PHP-7.3/ext/ftp/
H A Dftp.h162 char** ftp_list(ftpbuf_t *ftp, const char *path, const size_t path_len, int recursive);
H A Dphp_ftp.c115 ZEND_ARG_INFO(0, recursive)
740 zend_bool recursive = 0; in PHP_FUNCTION() local
742 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "rs|b", &z_ftp, &dir, &dir_len, &recursive) == FAILURE)… in PHP_FUNCTION()
751 if (NULL == (llist = ftp_list(ftp, dir, dir_len, recursive))) { in PHP_FUNCTION()
H A Dftp.c699 ftp_list(ftpbuf_t *ftp, const char *path, const size_t path_len, int recursive) in ftp_list() argument
701 …return ftp_genlist(ftp, ((recursive) ? "LIST -R" : "LIST"), ((recursive) ? sizeof("LIST -R")-1 : s… in ftp_list()
/PHP-7.3/ext/simplexml/
H A Dsimplexml.c1505 static void sxe_add_namespaces(php_sxe_object *sxe, xmlNodePtr node, zend_bool recursive, zval *ret… in sxe_add_namespaces() argument
1521 if (recursive) { in sxe_add_namespaces()
1525 sxe_add_namespaces(sxe, node, recursive, return_value); in sxe_add_namespaces()
1536 zend_bool recursive = 0; in SXE_METHOD() local
1540 if (zend_parse_parameters(ZEND_NUM_ARGS(), "|b", &recursive) == FAILURE) { in SXE_METHOD()
1552 sxe_add_namespaces(sxe, node, recursive, return_value); in SXE_METHOD()
1570 if (recursive) { in sxe_add_registered_namespaces()
1573 sxe_add_registered_namespaces(sxe, node, recursive, return_value); in sxe_add_registered_namespaces()
1585 zend_bool recursive = 0, from_root = 1; in SXE_METHOD() local
1589 if (zend_parse_parameters(ZEND_NUM_ARGS(), "|bb", &recursive, &from_root) == FAILURE) { in SXE_METHOD()
[all …]
/PHP-7.3/ext/spl/examples/
H A Ddualiterator.inc163 * And if both do then a recursive comparison is being used.
/PHP-7.3/ext/opcache/Optimizer/
H A Dzend_ssa.h129 unsigned int recursive : 1; member
H A Dzend_inference.h263 int recursive,
/PHP-7.3/ext/dom/
H A Ddocument.c979 zend_bool recursive = 0; in PHP_FUNCTION() local
981 …is(), "OO|b", &id, dom_document_class_entry, &node, dom_node_class_entry, &recursive) == FAILURE) { in PHP_FUNCTION()
998 if ((recursive == 0) && (nodep->type == XML_ELEMENT_NODE)) { in PHP_FUNCTION()
999 recursive = 2; in PHP_FUNCTION()
1001 retnodep = xmlDocCopyNode(nodep, docp, recursive); in PHP_FUNCTION()
H A Dnode.c1356 zend_bool recursive = 0; in PHP_FUNCTION() local
1358 …_parameters(ZEND_NUM_ARGS(), getThis(), "O|b", &id, dom_node_class_entry, &recursive) == FAILURE) { in PHP_FUNCTION()
1364 node = xmlDocCopyNode(n, n->doc, recursive); in PHP_FUNCTION()
1372 if (n->type == XML_ELEMENT_NODE && recursive == 0) { in PHP_FUNCTION()
/PHP-7.3/ext/pcre/pcre2lib/
H A Dpcre2_dfa_match.c2766 if (mb->recursive != NULL) in internal_dfa_match()
2846 for (ri = mb->recursive; ri != NULL; ri = ri->prevrec) in internal_dfa_match()
2855 new_recursive.prevrec = mb->recursive; in internal_dfa_match()
2856 mb->recursive = &new_recursive; in internal_dfa_match()
2871 mb->recursive = new_recursive.prevrec; /* Done this recursion */ in internal_dfa_match()
3791 mb->recursive = NULL; in pcre2_dfa_match()
H A Dpcre2_intmodedep.h913 dfa_recursion_info *recursive; /* Linked list of recursion data */ member
/PHP-7.3/
H A DREADME.UNIX-BUILD-SYSTEM9 - slow recursive make replaced with one global Makefile
/PHP-7.3/ext/standard/tests/general_functions/
H A Ddebug_zval_dump_o.phpt74 $this->class_object5 = $this; //recursive reference
/PHP-7.3/ext/standard/
H A Dftp_fopen_wrapper.c1042 int result, recursive = options & PHP_STREAM_MKDIR_RECURSIVE; in php_stream_ftp_mkdir() local
1060 if (!recursive) { in php_stream_ftp_mkdir()
H A Dfile.c1342 zend_bool recursive = 0; in PHP_FUNCTION() local
1349 Z_PARAM_BOOL(recursive) in PHP_FUNCTION()
1355 …RETURN_BOOL(php_stream_mkdir(dir, (int)mode, (recursive ? PHP_STREAM_MKDIR_RECURSIVE : 0) | REPORT… in PHP_FUNCTION()

Completed in 130 milliseconds

1234