Home
last modified time | relevance | path

Searched refs:child (Results 276 – 300 of 312) sorted by relevance

1...<<111213

/php-src/ext/spl/tests/
H A Drecursivecomparedualiterator.inc20 * level we need to check whether both child iterators are at their end.
/php-src/ext/xml/tests/
H A Dxml_set_object_multiple_times_errors.phpt39 <child/>
H A Dxml_set_object_multiple_times.phpt45 <child/>
/php-src/sapi/fpm/
H A Dphp-fpm.conf.in62 ; If this number of child processes exit with SIGSEGV or SIGBUS within the time
76 ; Time limit for child processes to wait for a reaction on signals from master.
131 ; Multiple pools of child processes may be started with different listening
/php-src/ext/dom/
H A Dphp_dom.h148 int dom_hierarchy(xmlNodePtr parent, xmlNodePtr child);
203 …ment_insertion_hierarchy_check_pre_insertion(xmlNodePtr parent, xmlNodePtr node, xmlNodePtr child);
204 …m_fragment_insertion_hierarchy_check_replace(xmlNodePtr parent, xmlNodePtr node, xmlNodePtr child);
H A Dphp_dom.stub.php443 public function insertBefore(DOMNode $node, ?DOMNode $child = null) {} argument
466 public function removeChild(DOMNode $child) {} argument
469 public function replaceChild(DOMNode $node, DOMNode $child) {} argument
1454 public function insertBefore(Node $node, ?Node $child): Node {} argument
1456 public function replaceChild(Node $node, Node $child): Node {} argument
1457 public function removeChild(Node $child): Node {} argument
H A Dhtml_document.c359 xmlNodePtr child = node->children; in dom_place_remove_element_and_hoist_children() local
360 while (child != NULL) { in dom_place_remove_element_and_hoist_children()
361 xmlUnlinkNode(child); in dom_place_remove_element_and_hoist_children()
362 xmlAddChild(parent, child); in dom_place_remove_element_and_hoist_children()
363 child = node->children; in dom_place_remove_element_and_hoist_children()
H A Delement.c516 …for (xmlNodePtr child = current_worklist_item->current_node->children; child; child = child->next)… in dom_deep_ns_redef() local
517 if (child->type != XML_ELEMENT_NODE) { in dom_deep_ns_redef()
528 worklist[worklist_size].current_node = child; in dom_deep_ns_redef()
H A Ddocument.c1139 for (xmlNodePtr child = node->children; child != NULL; child = child->next) { in libxml_fixup_name_and_content_element() local
1140 libxml_fixup_name_and_content_element(src_doc, dst_doc, child); in libxml_fixup_name_and_content_element()
/php-src/ext/dom/tests/
H A DDOMNode_isEqualNode.phpt51 foreach ($childNodes as $child) {
52 var_dump($child->isEqualNode($firstChild));
230 echo "--- Test document fragments with multiple child nodes ---\n";
361 --- Test document fragments with multiple child nodes ---
H A Ddom001.phpt71 echo "--------- Add child to root\n";
180 --------- Add child to root
/php-src/ext/dom/lexbor/lexbor/html/interfaces/
H A Delement.c78 lxb_dom_node_t *node, *child; in lxb_html_element_inner_html_set() local
92 child = node->first_child; in lxb_html_element_inner_html_set()
94 lxb_dom_node_remove(child); in lxb_html_element_inner_html_set()
95 lxb_dom_node_insert_child(root, child); in lxb_html_element_inner_html_set()
/php-src/Zend/Optimizer/
H A Dzend_cfg.c835 int child; in zend_cfg_identify_loops() local
836 for (child = blocks[sorted_blocks[i]].children; child >= 0; child = blocks[child].next_child) { in zend_cfg_identify_loops()
837 sorted_blocks[n++] = child; in zend_cfg_identify_loops()
/php-src/ext/soap/tests/interop/Round3/GroupE/
H A Dr3_groupE_list_004w.phpt13 $this->child = $c;
/php-src/ext/opcache/
H A Dzend_persist_calc.c85 if (list->child[i]) { in zend_persist_ast_calc()
86 zend_persist_ast_calc(list->child[i]); in zend_persist_ast_calc()
93 if (ast->child[i]) { in zend_persist_ast_calc()
94 zend_persist_ast_calc(ast->child[i]); in zend_persist_ast_calc()
H A Dzend_persist.c186 if (copy->child[i]) { in zend_persist_ast()
187 copy->child[i] = zend_persist_ast(copy->child[i]); in zend_persist_ast()
195 if (node->child[i]) { in zend_persist_ast()
196 node->child[i] = zend_persist_ast(node->child[i]); in zend_persist_ast()
/php-src/Zend/tests/
H A Dbug32290.phpt2 Bug #32290 (calling call_user_func_array() ends in infinite loop within child class)
/php-src/ext/opcache/tests/opt/
H A Dverify_return_type.phpt37 // but a child method may return int|float.
/php-src/ext/standard/tests/array/
H A Duasort_object2.phpt10 * child class,
H A Darray_unshift_object.phpt38 echo "defined in child";
H A Dsizeof_object2.phpt37 // child class which inherits parent test2
/php-src/Zend/tests/generators/
H A Dyield_from_multi_tree_single_nodes.phpt2 yield from on multiple trees needing merge, with intermediary nodes having only one child
/php-src/ext/spl/
H A Dspl_iterators.c258 zval retval, child; in spl_recursive_it_move_forward_ex() local
351 …hod_with_0_params(Z_OBJ_P(zthis), object->ce, &object->callGetChildren, "callGetChildren", &child); in spl_recursive_it_move_forward_ex()
357 zend_call_method_with_0_params(obj, ce, cache, "getchildren", &child); in spl_recursive_it_move_forward_ex()
365 zval_ptr_dtor(&child); in spl_recursive_it_move_forward_ex()
371 if (Z_TYPE(child) == IS_UNDEF || Z_TYPE(child) != IS_OBJECT || in spl_recursive_it_move_forward_ex()
372 !((ce = Z_OBJCE(child)) && instanceof_function(ce, spl_ce_RecursiveIterator))) { in spl_recursive_it_move_forward_ex()
373 zval_ptr_dtor(&child); in spl_recursive_it_move_forward_ex()
384 sub_iter = ce->get_iterator(ce, &child, 0); in spl_recursive_it_move_forward_ex()
385 ZVAL_COPY_VALUE(&object->iterators[object->level].zobject, &child); in spl_recursive_it_move_forward_ex()
/php-src/ext/xsl/
H A Dxsltprocessor.c49 static void xsl_proxy_factory(xmlNodePtr node, zval *child, dom_object *intern, xmlXPathParserConte… in xsl_proxy_factory() argument
66 php_dom_create_object(node, child, intern); in xsl_proxy_factory()
/php-src/ext/tidy/
H A Dtidy.stub.php986 public readonly ?array $child; variable in tidyNode

Completed in 153 milliseconds

1...<<111213