Home
last modified time | relevance | path

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

1234

/PHP-5.5/ext/dom/
H A Ddocument.c1181 long recursive = 0; in PHP_FUNCTION() local
1183 …is(), "OO|l", &id, dom_document_class_entry, &node, dom_node_class_entry, &recursive) == FAILURE) { in PHP_FUNCTION()
1200 if ((recursive == 0) && (nodep->type == XML_ELEMENT_NODE)) { in PHP_FUNCTION()
1201 recursive = 2; in PHP_FUNCTION()
1203 retnodep = xmlDocCopyNode(nodep, docp, recursive); in PHP_FUNCTION()
/PHP-5.5/ext/standard/
H A Darray.c1041 static int php_array_walk(HashTable *target_hash, zval *userdata, int recursive TSRMLS_DC) /* {{{ */ in php_array_walk()
1062 if (recursive && Z_TYPE_PP(args[0]) == IS_ARRAY) { in php_array_walk()
1082 php_array_walk(thash, userdata, recursive TSRMLS_CC); in php_array_walk()
2211 PHPAPI int php_array_merge(HashTable *dest, HashTable *src, int recursive TSRMLS_DC) /* {{{ */ in php_array_merge()
2223 …if (recursive && zend_hash_find(dest, string_key, string_key_len, (void **)&dest_entry) == SUCCESS… in php_array_merge()
2253 if (!php_array_merge(Z_ARRVAL_PP(dest_entry), Z_ARRVAL_P(src_zval), recursive TSRMLS_CC)) { in php_array_merge()
2345 static void php_array_merge_or_replace_wrapper(INTERNAL_FUNCTION_PARAMETERS, int recursive, int rep… in php_array_merge_or_replace_wrapper() argument
2372 php_array_merge(Z_ARRVAL_P(return_value), Z_ARRVAL_PP(args[i]), recursive TSRMLS_CC); in php_array_merge_or_replace_wrapper()
2373 } else if (recursive && i > 0) { /* First array will be copied directly instead */ in php_array_merge_or_replace_wrapper()
H A Dftp_fopen_wrapper.c1039 int result, recursive = options & PHP_STREAM_MKDIR_RECURSIVE; in php_stream_ftp_mkdir() local
1057 if (!recursive) { in php_stream_ftp_mkdir()
H A Dfile.c1324 zend_bool recursive = 0; in PHP_FUNCTION() local
1327 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "p|lbr", &dir, &dir_len, &mode, &recursive, &… in PHP_FUNCTION()
1333 …RETURN_BOOL(php_stream_mkdir(dir, mode, (recursive ? PHP_STREAM_MKDIR_RECURSIVE : 0) | REPORT_ERRO… in PHP_FUNCTION()
/PHP-5.5/
H A DREADME.UNIX-BUILD-SYSTEM9 - slow recursive make replaced with one global Makefile
H A DNEWS256 . Fixed bug #69793 (Remotely triggerable stack exhaustion via recursive
3264 . Added support for object references in recursive serialize() calls.
4011 . Fixed bug #60082 (Crash in ArrayObject() when using recursive references).
4951 - Fixed a possible crash because of recursive GC invocation. (Dmitry)
8532 - Fixed bug #37395 (recursive mkdir() fails to create nonexistent directories
8574 - Fixed bug #34066 (recursive array_walk causes segfault). (Tony)
8844 - Fixed bug #35999 (recursive mkdir() does not work with relative path
9224 - Fixed __get/__set to allow recursive calls for different properties. (Dmitry)
9521 - Fixed bug #33210 (relax jpeg recursive loop protection). (Ilia)
9643 - Fixed bug #32179 (xmlrpc_encode() segfaults with recursive references).
[all …]
/PHP-5.5/ext/pcre/pcrelib/
H A DNEWS479 recursive subpatterns are automatically treated as atomic groups. Thus, for
571 1. It's possible now to compile PCRE so that it does not use recursive
620 5. Support for recursive calls to individual subpatterns. This makes it really
651 (iii) Added -r, --recursive to recurse into sub-directories.
H A DChangeLog10 1. If a group that contained a recursive back reference also contained a
17 incorrect code to be compiled when recursive forward references were
25 4. A recursive back reference by name within a group that had the same name as
34 6. A lookbehind assertion within a set of mutually recursive subpatterns could
105 occurrence of (?| it is possible for an apparently non-recursive back
106 reference to become recursive if a later named group with the relevant
200 subroutine call (recursive or otherwise) if the number of captured groups
227 10. A mutually recursive set of back references such as (\2)(\1) caused a
2246 similar to recursive and subroutine calls.
4979 failure while inside a recursive subpattern call now causes the
[all …]
H A Dpcre_internal.h2559 recursion_info *recursive; /* Linked list of recursion data */ member
2585 dfa_recursion_info *recursive; /* Linked list of recursion data */ member
H A Dpcre_jit_compile.c1242 static int get_framesize(compiler_common *common, pcre_uchar *cc, pcre_uchar *ccend, BOOL recursive in get_framesize() argument
1247 BOOL setsom_found = recursive; in get_framesize()
1248 BOOL setmark_found = recursive; in get_framesize()
1262 if (!recursive && (*cc == OP_CBRAPOS || *cc == OP_SCBRAPOS)) in get_framesize()
1424 …iler_common *common, pcre_uchar *cc, pcre_uchar *ccend, int stackpos, int stacktop, BOOL recursive) in init_frame() argument
1427 BOOL setsom_found = recursive; in init_frame()
1428 BOOL setmark_found = recursive; in init_frame()
1441 if (recursive || (*cc != OP_CBRAPOS && *cc != OP_SCBRAPOS)) in init_frame()
/PHP-5.5/main/streams/
H A Dplain_wrapper.c1171 int ret, recursive = options & PHP_STREAM_MKDIR_RECURSIVE; in php_plain_files_mkdir() local
1178 if (!recursive) { in php_plain_files_mkdir()
/PHP-5.5/ext/ftp/
H A Dftp.c661 ftp_list(ftpbuf_t *ftp, const char *path, int recursive TSRMLS_DC) in ftp_list()
663 return ftp_genlist(ftp, ((recursive) ? "LIST -R" : "LIST"), path TSRMLS_CC); in ftp_list()
/PHP-5.5/ext/standard/tests/general_functions/
H A Ddebug_zval_dump_o.phpt74 $this->class_object5 = $this; //recursive reference
H A Dprint_r.phpt199 $this->class_object5 = $this; //recursive reference
H A Dprint_r_64bit.phpt200 $this->class_object5 = $this; //recursive reference
H A Dvar_dump.phpt193 $this->class_object5 = $this; //recursive reference
H A Dvar_dump_64bit.phpt193 $this->class_object5 = $this; //recursive reference
/PHP-5.5/ext/mbstring/oniguruma/doc/
H A DRE308 * left-most recursive call is not allowed.
/PHP-5.5/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)
/PHP-5.5/ext/pcre/pcrelib/doc/
H A Dpcre.txt1109 ing by making recursive calls to an internal function called match().
1115 the heap to remember data, instead of using recursive function calls,
1151 In some environments it is desirable to limit the depth of recursive
1811 data, instead of recursive function calls, when running the pcre_exec()
1830 are nested, PCRE uses recursive function calls, which use up the system
2456 40 recursive call could loop indefinitely
6234 a subroutine call to a subpattern (recursive or otherwise)
6878 syntax for recursive patterns is described below.
6980 recursive call of the entire regular expression.
7064 two different alternatives for the recursive and non-recursive cases.
[all …]
/PHP-5.5/ext/mbstring/oniguruma/
H A DHISTORY609 a non-recursive call alternative.
1585 2003/05/26: [bug] OP_REPEAT in recursive subexp call.
1706 only if subexp is recursive.
1712 2003/02/28: [impl] check recursive subexp call.
/PHP-5.5/ext/pcre/pcrelib/testdata/
H A Dtestoutput23875 Failed: recursive call could loop indefinitely at offset 3
3878 Failed: recursive call could loop indefinitely at offset 6
3881 Failed: recursive call could loop indefinitely at offset 15
3916 Failed: recursive call could loop indefinitely at offset 15
3919 Failed: recursive call could loop indefinitely at offset 16
9150 Failed: recursive call could loop indefinitely at offset 9
9153 Failed: recursive call could loop indefinitely at offset 9
9156 Failed: recursive call could loop indefinitely at offset 10
9159 Failed: recursive call could loop indefinitely at offset 10
10646 Failed: recursive call could loop indefinitely at offset 31
[all …]
/PHP-5.5/ext/standard/tests/file/
H A Dmkdir_rmdir_variation-win32.phpt11 /* Prototype: bool mkdir ( string $pathname [, int $mode [, bool $recursive [, resource $context]]…
H A Dmkdir_rmdir_variation1.phpt21 /* Prototype: bool mkdir ( string $pathname [, int $mode [, bool $recursive [, resource $context]]…

Completed in 245 milliseconds

1234