Home
last modified time | relevance | path

Searched refs:child2 (Results 1 – 22 of 22) sorted by relevance

/php-src/ext/dom/tests/modern/spec/
H A Dclone_text_nodes.phpt17 $child2 = $root->appendChild($dom->createElement("child2"));
18 $child2->appendChild($dom->createTextNode("d"));
28 $clone = $child2->cloneNode(true);
31 $clone = $child2->cloneNode(false);
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>
42 <child2>d</child2>
43 <child2/>
H A Dclone_document.phpt12 <!ELEMENT child2 (#PCDATA)>
20 <child2>&foo;</child2>
26 var_dump($dom->getElementsByTagName("child2")[0]->firstChild->nodeName);
33 var_dump($clone->getElementsByTagName("child2")[0]->firstChild->nodeName);
53 <!ELEMENT child2 (#PCDATA)>
61 <child2>&foo;</child2>
H A Dserialize_element_unqualified.phpt8 $dom = Dom\XMLDocument::createFromString('<root xmlns:p1="u1"><child xmlns:p2="u1"><p1:child2/></ch…
13 $child2 = $root->ownerDocument->createElementNS('u1', 'child2');
14 $root->firstChild->appendChild($child2);
20 <root xmlns:p1="u1"><child xmlns:p2="u1"><p1:child2/></child></root>
22 <root xmlns:p1="u1"><child xmlns:p2="u1"><p2:child2/></child></root>
H A Dreconciliation_of_attributes.phpt21 $child->setAttributeNS("urn:a", "a:child2", "bar");
22 $child2 = $child->getAttributeNodeNS("urn:a", "child2");
34 var_dump($child2->prefix, $child2->namespaceURI);
41 …ar" a:root3="bar"><child xmlns:a="urn:x" a:child1="bar" xmlns:ns2="urn:a" ns2:child2="bar"/></root>
53 …:b" ns1:root2="bar" a:root3="bar" xmlns:ns2="urn:x" ns2:child1="bar"><child a:child2="bar"/></root>
H A DNode_replaceChild_edge_cases.phpt75 $fragment->appendChild($dom->createElement("new-child2"));
/php-src/ext/dom/tests/
H A DDOMNode_normalize_advanced.phpt11 $child2 = $root->appendChild($dom->createElement("child2"));
17 $child2->appendChild($dom->createTextNode(""));
18 $child2->setAttribute("foo", "bar");
25 var_dump($child2->childNodes[0]);
30 <root><child1>abcdef</child1><child2 foo="bar"></child2></root>
H A DDOMNode_removeChild_error1.phpt11 $child2 = $document->createElement('child2');
13 $parent->appendChild($child2);
H A DDOMNode_replaceChild_error1.phpt11 $child2 = $document->createElement('child2');
14 $parent->appendChild($child2);
H A Dgh12616_3.phpt16 <child2 xmlns:x="http://symfony.com/schema/dic/services">
19 </child2>
41 echo "--- Namespaces of child2 ---\n";
43 foreach ($xpath->query("/container/child2/namespace::*") as $ns) {
55 <child2 xmlns:x="http://symfony.com/schema/dic/services">
58 </child2>
128 --- Namespaces of child2 ---
H A Dbug47531_a.phpt14 <foo:child2/>
47 <foo:child2 xmlns:foo="some:ns"/>
H A Dbug47531_b.phpt14 <foo:child2/>
48 <foo:child2/>
/php-src/ext/dom/tests/delayed_freeing/
H A Delement_declaration.phpt11 <!ELEMENT parent (child1, child2)>
13 <!ELEMENT child2 (#PCDATA)>
30 <!ELEMENT parent (child1 , child2)>
32 <!ELEMENT child2 (#PCDATA)>
/php-src/Zend/
H A Dzend_ast.h240 …zend_ast * ZEND_FASTCALL zend_ast_create_2(zend_ast_kind kind, zend_ast *child1, zend_ast *child2);
241 …STCALL zend_ast_create_3(zend_ast_kind kind, zend_ast *child1, zend_ast *child2, zend_ast *child3);
242 …STCALL zend_ast_create_4(zend_ast_kind kind, zend_ast *child1, zend_ast *child2, zend_ast *child3,…
255 … zend_ast_create_ex_2(zend_ast_kind kind, zend_ast_attr attr, zend_ast *child1, zend_ast *child2) { in zend_ast_create_ex_2() argument
256 zend_ast *ast = zend_ast_create_2(kind, child1, child2); in zend_ast_create_ex_2()
260 …ex_3(zend_ast_kind kind, zend_ast_attr attr, zend_ast *child1, zend_ast *child2, zend_ast *child3)… in zend_ast_create_ex_3() argument
261 zend_ast *ast = zend_ast_create_3(kind, child1, child2, child3); in zend_ast_create_ex_3()
266 zend_ast *ast = zend_ast_create_4(kind, child1, child2, child3, child4); in zend_ast_create_ex_4()
271 zend_ast *ast = zend_ast_create_5(kind, child1, child2, child3, child4, child5); in zend_ast_create_ex_5()
278 …ast * ZEND_FASTCALL zend_ast_create_list_2(zend_ast_kind kind, zend_ast *child1, zend_ast *child2);
[all …]
H A Dzend_ast.c128 ast->child[2] = child2; in zend_ast_create_decl()
176 ast->child[1] = child2; in zend_ast_create_2()
179 } else if (child2) { in zend_ast_create_2()
198 ast->child[1] = child2; in zend_ast_create_3()
202 } else if (child2) { in zend_ast_create_3()
223 ast->child[1] = child2; in zend_ast_create_4()
228 } else if (child2) { in zend_ast_create_4()
251 ast->child[1] = child2; in zend_ast_create_5()
257 } else if (child2) { in zend_ast_create_5()
322 list->child[1] = child2; in zend_ast_create_list_2()
[all …]
/php-src/ext/dom/tests/modern/html/serializer/
H A DHTMLDocument_serialize_ns_imported_06.phpt29 <child2/>
41 <child2/>
50 <child2></child2>
H A DHTMLDocument_serialize_ns_imported_02.phpt29 <child2/>
42 <child2/>
53 <child2></child2>
H A DHTMLDocument_serialize_ns_imported_05.phpt29 <child2/>
42 <child2/>
53 <child2></child2>
H A DHTMLDocument_serialize_ns_imported_03.phpt29 <child2/>
H A DHTMLDocument_serialize_ns_imported_04.phpt29 <child2/>
/php-src/ext/dom/tests/modern/xml/
H A DXMLDocument_saveXML_node.phpt11 $child2 = $root->appendChild($dom->createElement("child2"));
/php-src/ext/simplexml/tests/
H A DgetDocNamespaces_no_internal_declaration.phpt16 <child2 xmlns:d="urn:d"/>
/php-src/ext/opcache/jit/ir/
H A Dir_ra.c3255 ir_live_interval *child, *child2; in ir_allocate_blocked_reg() local
3307 child2 = ir_split_interval_at(ctx, child, split_pos); in ir_allocate_blocked_reg()
3309 ir_add_to_unhandled(unhandled, child2); in ir_allocate_blocked_reg()
3310 IR_LOG_LSRA(" ---- Queue", child2, ""); in ir_allocate_blocked_reg()

Completed in 56 milliseconds