| /PHP_5_4/ext/dom/ |
| H A D | document.c | 1181 long recursive = 0; local 1183 if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "OO|l", &id, dom_document_class_entry, &node, dom_node_class_entry, &recursive) == FAILURE) { 1200 if ((recursive == 0) && (nodep->type == XML_ELEMENT_NODE)) { 1201 recursive = 2; 1203 retnodep = xmlDocCopyNode(nodep, docp, recursive); 1876 /* remove xinclude processing nodes from recursive xincludes */
|
| H A D | node.c | 1434 long recursive = 0; local 1436 if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O|l", &id, dom_node_class_entry, &recursive) == FAILURE) { 1442 node = xmlDocCopyNode(n, n->doc, recursive); 1450 if (n->type == XML_ELEMENT_NODE && recursive == 0) {
|
| /PHP_5_4/ext/ftp/ |
| H A D | php_ftp.c | 121 ZEND_ARG_INFO(0, recursive) 682 /* {{{ proto array ftp_rawlist(resource stream, string directory [, bool recursive]) 690 zend_bool recursive = 0; local 692 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rs|b", &z_ftp, &dir, &dir_len, &recursive) == FAILURE) { 699 if (NULL == (llist = ftp_list(ftp, dir, recursive TSRMLS_CC))) {
|
| /PHP_5_4/ext/simplexml/ |
| H A D | simplexml.c | 1448 static void sxe_add_namespaces(php_sxe_object *sxe, xmlNodePtr node, zend_bool recursive, zval *return_value TSRMLS_DC) /* {{{ */ argument 1464 if (recursive) { 1468 sxe_add_namespaces(sxe, node, recursive, return_value TSRMLS_CC); 1479 zend_bool recursive = 0; local 1483 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|b", &recursive) == FAILURE) { 1495 sxe_add_namespaces(sxe, node, recursive, return_value TSRMLS_CC); 1503 static void sxe_add_registered_namespaces(php_sxe_object *sxe, xmlNodePtr node, zend_bool recursive, zval *return_value TSRMLS_DC) /* {{{ */ argument 1513 if (recursive) { 1516 sxe_add_registered_namespaces(sxe, node, recursive, return_value TSRMLS_CC); 1524 /* {{{ proto string SimpleXMLElement::getDocNamespaces([bool recursive [, boo 1528 zend_bool recursive = 0, from_root = 1; local [all...] |
| /PHP_5_4/ext/standard/ |
| H A D | array.c | 1053 static int php_array_walk(HashTable *target_hash, zval *userdata, int recursive TSRMLS_DC) /* {{{ */ 1077 if (recursive && Z_TYPE_PP(args[0]) == IS_ARRAY) { 1097 php_array_walk(thash, userdata, recursive TSRMLS_CC); 2246 PHPAPI int php_array_merge(HashTable *dest, HashTable *src, int recursive TSRMLS_DC) /* {{{ */ 2258 if (recursive && zend_hash_find(dest, string_key, string_key_len, (void **)&dest_entry) == SUCCESS) { 2283 if (!php_array_merge(Z_ARRVAL_PP(dest_entry), Z_ARRVAL_PP(src_entry), recursive TSRMLS_CC)) { 2368 static void php_array_merge_or_replace_wrapper(INTERNAL_FUNCTION_PARAMETERS, int recursive, int replace) /* {{{ */ argument 2396 php_array_merge(Z_ARRVAL_P(return_value), Z_ARRVAL_PP(args[i]), recursive TSRMLS_CC); 2397 } else if (recursive && i > 0) { /* First array will be copied directly instead */
|
| H A D | ftp_fopen_wrapper.c | 1039 int result, recursive = options & PHP_STREAM_MKDIR_RECURSIVE; local 1057 if (!recursive) {
|
| H A D | file.c | 1305 /* {{{ proto bool mkdir(string pathname [, int mode [, bool recursive [, resource context]]]) 1313 zend_bool recursive = 0; local 1316 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "p|lbr", &dir, &dir_len, &mode, &recursive, &zcontext) == FAILURE) { 1322 RETURN_BOOL(php_stream_mkdir(dir, mode, (recursive ? PHP_STREAM_MKDIR_RECURSIVE : 0) | REPORT_ERRORS, context));
|
| /PHP_5_4/main/streams/ |
| H A D | plain_wrapper.c | 1143 int ret, recursive = options & PHP_STREAM_MKDIR_RECURSIVE; local 1150 if (!recursive) {
|
| /PHP_5_4/ext/pcre/pcrelib/ |
| H A D | pcre_internal.h | 2043 OP_RECURSE, /* 111 Match a numbered subpattern (possibly recursive) */ 2376 encountered. This is also used to identify subpatterns that contain recursive 2382 pcre_uint16 flag; /* Set TRUE if recursive back ref */ 2428 /* Structure for items in a linked list that represents an explicit recursive 2503 recursion_info *recursive; /* Linked list of recursion data */ member in struct:match_data 2529 dfa_recursion_info *recursive; /* Linked list of recursion data */ member in struct:dfa_match_data
|