Home
last modified time | relevance | path

Searched refs:child (Results 51 – 75 of 312) sorted by relevance

12345678910>>...13

/php-src/ext/dom/tests/gh11830/
H A Ddocument_variation.phpt21 <child><testelement/></child>
50 <child/>
58 <child/>
66 <child/>
74 <child/>
82 <child/>
/php-src/ext/dom/tests/modern/spec/
H A Dreconciliation_of_elements.phpt13 <a:child xmlns:b="urn:b">
15 </a:child>
22 $a_child = $dom->getElementsByTagName("a:child")[0];
45 <b:child xmlns:b="urn:b">
47 </b:child></root>
49 <b:child xmlns:b="urn:b">
51 </b:child>
H A Dreconciliation_of_attributes.phpt18 $child = $root->appendChild($dom->createElement("child"));
19 $child->setAttributeNS("urn:x", "a:child1", "bar");
20 $child1 = $child->getAttributeNodeNS("urn:x", "child1");
21 $child->setAttributeNS("urn:a", "a:child2", "bar");
22 $child2 = $child->getAttributeNodeNS("urn:a", "child2");
30 $child->removeAttribute("a:child1");
41 <root xmlns:a="urn:a" a:root1="bar" xmlns:ns1="urn:b" ns1:root2="bar" a:root3="bar"><child xmlns:a=…
53 …"urn:b" ns1:root2="bar" a:root3="bar" xmlns:ns2="urn:x" ns2:child1="bar"><child a:child2="bar"/></…
H A Dclone_text_nodes.phpt15 $child = $root->appendChild($dom->createElement("child"));
16 $child->appendChild($dom->createTextNode("c"));
37 <a:root xmlns:a="urn:a" foo="bar">afoob<child>c</child><child2>d</child2></a:root>
41 <a:root xmlns:a="urn:a" foo="bar">afoob<child>c</child><child2>d</child2></a:root>
H A Dserialize_default_and_prefixed_xmlns.phpt11 <a:child xmlns:a="urn:a" xmlns="urn:default">
13 </a:child>
23 <a:child xmlns:a="urn:a" xmlns="urn:default">
25 </a:child>
H A Dclone_document.phpt11 <!ELEMENT child (#PCDATA)>
17 <child>
19 </child>
52 <!ELEMENT child (#PCDATA)>
58 <child>
60 </child>
H A DNode_normalize.phpt36 echo "Number of child nodes of title = ";
43 echo "Number of child nodes of title after adding second title = ";
49 echo "Number of child nodes of title after normalizing author = ";
56 echo "Number of child nodes of title after normalizing title = ";
61 Number of child nodes of title = int(1)
62 Number of child nodes of title after adding second title = int(2)
63 Number of child nodes of title after normalizing author = int(2)
64 Number of child nodes of title after normalizing title = int(1)
H A Dimport_of_namepace_conflicting_attributes.phpt16 $child = $root->appendChild($dom->createElement("child"));
17 $child->setAttributeNS("urn:x", "a:child1", "bar");
18 $child1 = $child->getAttributeNodeNS("urn:x", "child1");
25 $child->removeAttribute("a:child1");
42 <root xmlns:a="urn:a" a:root1="bar" xmlns:ns1="urn:b" ns1:root2="bar"><child xmlns:a="urn:x" a:chil…
47 … a:root1="bar" xmlns:ns1="urn:b" ns1:root2="bar" xmlns:ns2="urn:x" ns2:child1="bar"><child/></root>
/php-src/ext/dom/tests/modern/css_selectors/
H A Dpseudo_classes_only_child.phpt2 CSS Selectors - Pseudo classes: only-child
22 test_helper($dom, '.only-child1 p:only-child');
23 test_helper($dom, '.only-child2 p:only-child');
27 --- Selector: .only-child1 p:only-child ---
29 --- Selector: .only-child2 p:only-child ---
/php-src/ext/dom/tests/
H A Dgh15670.phpt10 $child = $dom->documentElement->appendChild($dom->createElementNS('urn:a', 'child'));
11 function test($child, $html) {
13 $child->innerHTML = $html;
17 test($child, '--></root><!--');
29 <root><child xmlns="urn:a"/></root>
H A Dxml_parsing_LIBXML_RECOVER.phpt9 $dom->loadXML('<root><child/>', options: LIBXML_RECOVER);
12 $dom = Dom\XMLDocument::createFromString('<root><child/>', options: LIBXML_RECOVER);
19 <root><child/></root>
23 <root><child/></root>
H A Dxpath_context_node.phpt10 <child>
12 </child>
13 <child>
16 </child>
H A DDOMNode_normalize_basic.phpt34 echo "Number of child nodes of title = ";
41 echo "Number of child nodes of title after adding second title = ";
47 echo "Number of child nodes of title after normalizing author = ";
54 echo "Number of child nodes of title after normalizing title = ";
59 Number of child nodes of title = int(1)
60 Number of child nodes of title after adding second title = int(2)
61 Number of child nodes of title after normalizing author = int(2)
62 Number of child nodes of title after normalizing title = int(1)
H A Ddom_comment_basic.phpt22 echo "--- child $index ---\n";
30 --- child 0 ---
34 --- child 1 ---
37 --- child 2 ---
H A Dbug75451.phpt8 $dom->loadXML('<root><child/></root>');
10 foreach($xpath->query('/root/noexist') as $child) {
11 var_dump($child);
/php-src/ext/dom/tests/modern/xml/
H A DNode_removeChild_from_comment.phpt2 Removing a child from a comment should result in NOT_FOUND_ERR
8 $dom = Dom\XMLDocument::createFromString('<root><!-- comment --><child/></root>');
10 $child = $comment->nextSibling;
13 $comment->removeChild($child);
H A DElement_innerHTML_prefixed_writing.phpt8 $dom->documentElement->innerHTML = '<child><x:subchild/></child>';
13 <x:root xmlns:x="urn:x"><child><x:subchild/></child></x:root>
/php-src/Zend/tests/
H A Ddynamic_class_const_fetch_cache_slot.phpt12 public const BAZ = 'baz child';
21 public const BAZ = 'baz 2 child';
48 baz child
49 baz child
53 baz 2 child
54 baz 2 child
/php-src/ext/dom/
H A Dnode.c811 if (child->doc != parentp->doc && child->doc != NULL) { in dom_node_insert_before_legacy()
816 if (child->type == XML_DOCUMENT_FRAG_NODE && child->children == NULL) { in dom_node_insert_before_legacy()
847 new_child = child; in dom_node_insert_before_legacy()
867 lastattr = xmlHasNsProp(refp->parent, child->name, child->ns->href); in dom_node_insert_before_legacy()
901 new_child = child; in dom_node_insert_before_legacy()
917 lastattr = xmlHasNsProp(parentp, child->name, child->ns->href); in dom_node_insert_before_legacy()
1218 xmlUnlinkNode(child); in dom_node_remove_child()
1259 if (!(child->doc == NULL || child->doc == nodep->doc)) { in dom_node_append_child_legacy()
1264 if (child->type == XML_DOCUMENT_FRAG_NODE && child->children == NULL) { in dom_node_append_child_legacy()
1284 new_child = child; in dom_node_append_child_legacy()
[all …]
/php-src/ext/tidy/tests/
H A D010.phpt38 ["child"]=>
64 ["child"]=>
87 ["child"]=>
138 ["child"]=>
169 ["child"]=>
195 ["child"]=>
218 ["child"]=>
239 ["child"]=>
269 ["child"]=>
294 ["child"]=>
[all …]
H A Dbug77040.phpt9 $p = $tidy->body()->child[0];
12 $text = $p->child[0];
15 $cdata = $tidy->body()->child[1]->child[0];
/php-src/ext/simplexml/tests/
H A DSimpleXMLElement_asXML_fragment_filename.phpt12 <child id="foo">bar</child>
28 <child id="foo">bar</child>
H A Dprofile01.phpt9 <child>Hello</child>
13 echo $root->child;
/php-src/Zend/
H A Dzend_compile.c3299 zend_ast *child = list->child[i]; in list_is_keyed() local
3300 if (child) { in list_is_keyed()
3301 return child->kind == ZEND_AST_ARRAY_ELEM && child->child[1] != NULL; in list_is_keyed()
4291 && args->child[1]->child[0]->kind == ZEND_AST_ZVAL in zend_compile_func_cufa()
4293 && args->child[1]->child[1]->kind == ZEND_AST_ARG_LIST) { in zend_compile_func_cufa()
4420 zend_ast *name_ast = args->child[2]->child[0]; in zend_compile_func_in_array()
4597 && args->child[0]->child[0]->kind == ZEND_AST_ZVAL in zend_compile_func_array_slice()
4599 && args->child[0]->child[1]->kind == ZEND_AST_ARG_LIST in zend_compile_func_array_slice()
11760 child = &ast->child[2 - zend_is_true(zend_ast_get_zval(ast->child[0]))]; in zend_eval_const_expr()
11762 child--; in zend_eval_const_expr()
[all …]
/php-src/sapi/fpm/fpm/
H A Dfpm_request.h22 void fpm_request_check_timed_out(struct fpm_child_s *child, struct timeval *tv, int terminate_timeo…
23 int fpm_request_is_idle(struct fpm_child_s *child);
25 int fpm_request_last_activity(struct fpm_child_s *child, struct timeval *tv);

Completed in 106 milliseconds

12345678910>>...13