Home
last modified time | relevance | path

Searched refs:recursive (Results 51 – 75 of 80) sorted by last modified time

1234

/PHP-5.5/ext/spl/examples/
H A Ddirectoryfilterdots.inc18 * and makes it recursive. Further more it filters the entries '.' and '..'.
H A Ddualiterator.inc163 * And if both do then a recursive comparison is being used.
H A Drecursivedualiterator.inc13 * @brief Synchronous iteration over two recursive iterators
/PHP-5.5/ext/simplexml/tests/
H A Dfeature55218.phpt31 echo "\nnon recursive:\n";
44 echo "\nnon recursive:\n";
76 non recursive:
106 non recursive:
H A Dbug41861.phpt18 echo "root(recursive): '$name' -- namespaces: ", implode(', ', $namespaces), "\n";
20 echo "root(non-recursive): '$name' -- namespaces: ", implode(', ', $namespaces), "\n";
35 root(recursive): 'root' -- namespaces: #ns1, #ns2, #ns3
36 root(non-recursive): 'root' -- namespaces:
/PHP-5.5/ext/simplexml/
H A Dsimplexml.c1451 static void sxe_add_namespaces(php_sxe_object *sxe, xmlNodePtr node, zend_bool recursive, zval *ret… in sxe_add_namespaces() argument
1467 if (recursive) { in sxe_add_namespaces()
1471 sxe_add_namespaces(sxe, node, recursive, return_value TSRMLS_CC); in sxe_add_namespaces()
1482 zend_bool recursive = 0; in SXE_METHOD() local
1486 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|b", &recursive) == FAILURE) { in SXE_METHOD()
1498 sxe_add_namespaces(sxe, node, recursive, return_value TSRMLS_CC); in SXE_METHOD()
1516 if (recursive) { in sxe_add_registered_namespaces()
1519 sxe_add_registered_namespaces(sxe, node, recursive, return_value TSRMLS_CC); in sxe_add_registered_namespaces()
1531 zend_bool recursive = 0, from_root = 1; in SXE_METHOD() local
1535 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|bb", &recursive, &from_root) == FAILURE) { in SXE_METHOD()
[all …]
/PHP-5.5/ext/pcre/pcrelib/testdata/
H A Dtestoutput13778 /recursive references in Perl, as far as 5.11.3 - see some stuff in test #2./
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 …]
H A Dtestinput2326 /a recursive reference to itself. PCRE has now made these into atomic patterns./
H A Dtestinput12345 /recursive references in Perl, as far as 5.11.3 - see some stuff in test #2./
/PHP-5.5/ext/pcre/pcrelib/
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()
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_exec.c1337 if (md->recursive != NULL) /* Not recursing => FALSE */ in match()
1345 if (md->recursive != NULL) in match()
1352 condition = recno == md->recursive->group_num; in match()
1498 md->recursive == NULL && in match()
1766 for (ri = md->recursive; ri != NULL; ri = ri->prevrec) in match()
1775 new_recursive.prevrec = md->recursive; in match()
1776 md->recursive = &new_recursive; in match()
1811 md->recursive = new_recursive.prevrec; in match()
1848 md->recursive = &new_recursive; in match()
1854 md->recursive = new_recursive.prevrec; in match()
[all …]
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 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 DREADME302 . There is a separate counter that limits the depth of recursive function calls
/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/mbstring/oniguruma/doc/
H A DRE308 * left-most recursive call is not allowed.
/PHP-5.5/ext/ftp/
H A Dphp_ftp.c121 ZEND_ARG_INFO(0, recursive)
690 zend_bool recursive = 0; in PHP_FUNCTION() local
692 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rs|b", &z_ftp, &dir, &dir_len, &recursive) =… in PHP_FUNCTION()
699 if (NULL == (llist = ftp_list(ftp, dir, recursive TSRMLS_CC))) { in PHP_FUNCTION()
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()
H A Dftp.h162 char** ftp_list(ftpbuf_t *ftp, const char *path, int recursive TSRMLS_DC);
/PHP-5.5/ext/dom/tests/
H A Dbug43364.phpt2 Bug #43364 (recursive xincludes don't remove internal xml nodes properly)
/PHP-5.5/ext/dom/
H A Dnode.c1434 long recursive = 0; in PHP_FUNCTION() local
1436 …s(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O|l", &id, dom_node_class_entry, &recursive) == FAILURE) { in PHP_FUNCTION()
1442 node = xmlDocCopyNode(n, n->doc, recursive); in PHP_FUNCTION()
1450 if (n->type == XML_ELEMENT_NODE && recursive == 0) { in PHP_FUNCTION()
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()

Completed in 237 milliseconds

1234