Home
last modified time | relevance | path

Searched refs:child1 (Results 1 – 23 of 23) sorted by relevance

/php-src/ext/simplexml/tests/
H A D030.phpt10 <child1>test</child1>
11 <child1>test 2</child1>
18 echo $sxe->child1[0]."\n";
19 echo $sxe->child1[1]."\n\n";
21 var_dump(isset($sxe->child1[1]));
22 unset($sxe->child1[1]);
23 var_dump(isset($sxe->child1[1]));
H A D031.phpt10 <child1>test</child1>
11 <child1>test 2</child1>
52 <child1>test</child1>
53 <child1>test 2</child1>
/php-src/ext/dom/tests/
H A DDOMNode_normalize_advanced.phpt10 $child1 = $root->appendChild($dom->createElement("child1"));
13 $child1->appendChild($dom->createTextNode("abc"));
14 $child1->appendChild($dom->createTextNode(""));
15 $child1->appendChild($dom->createTextNode("def"));
24 var_dump($child1->childNodes[0]->textContent);
30 <root><child1>abcdef</child1><child2 foo="bar"></child2></root>
H A DDOMNode_removeChild_error1.phpt10 $child1 = $document->createElement('child1');
12 $real_parent->appendChild($child1);
15 $parent->removeChild($child1);
H A DDOMNode_replaceChild_error1.phpt10 $child1 = $document->createElement('child1');
13 $real_parent->appendChild($child1);
16 $parent->replaceChild($child3, $child1);
H A Dgh12616_3.phpt12 <child1 xmlns:x="http://symfony.com/schema/dic/services">
15 </child1>
29 echo "--- Namespaces of child1 ---\n";
31 foreach ($xpath->query("/container/child1/namespace::*") as $ns) {
35 echo "--- Namespaces of child1/foo (both nodes) ---\n";
37 foreach ($xpath->query("/container/child1/foo/namespace::*") as $ns) {
51 <child1>
54 </child1>
60 --- Namespaces of child1 ---
83 --- Namespaces of child1/foo (both nodes) ---
H A Dbug47531_a.phpt13 <foo:child1/>
46 <foo:child1 xmlns:foo="some:ns"/>
H A Dbug47531_b.phpt13 <foo:child1/>
47 <foo:child1/>
/php-src/ext/dom/tests/modern/xml/
H A DXMLDocument_saveXML_node.phpt10 $child1 = $root->appendChild($dom->createElement("child1"));
12 echo $dom->saveXml($child1);
16 <child1/>
/php-src/ext/dom/tests/modern/spec/
H A Dimport_of_namepace_conflicting_attributes.phpt17 $child->setAttributeNS("urn:x", "a:child1", "bar");
18 $child1 = $child->getAttributeNodeNS("urn:x", "child1");
25 $child->removeAttribute("a:child1");
26 $root->setAttributeNodeNS($child1);
36 var_dump($imported->getAttributeNodeNS("urn:x", "child1")->prefix);
37 var_dump($imported->getAttributeNodeNS("urn:x", "child1")->namespaceURI);
42 …n:a" a:root1="bar" xmlns:ns1="urn:b" ns1:root2="bar"><child xmlns:a="urn:x" a:child1="bar"/></root>
47 <root xmlns:a="urn:a" a:root1="bar" xmlns:ns1="urn:b" ns1:root2="bar" xmlns:ns2="urn:x" ns2:child1=…
H A Dreconciliation_of_attributes.phpt19 $child->setAttributeNS("urn:x", "a:child1", "bar");
20 $child1 = $child->getAttributeNodeNS("urn:x", "child1");
30 $child->removeAttribute("a:child1");
31 $root->setAttributeNodeNS($child1);
33 var_dump($child1->prefix, $child1->namespaceURI);
41 …xmlns:ns1="urn:b" ns1:root2="bar" a:root3="bar"><child xmlns:a="urn:x" a:child1="bar" xmlns:ns2="u…
53 …r" xmlns:ns1="urn:b" ns1:root2="bar" a:root3="bar" xmlns:ns2="urn:x" ns2:child1="bar"><child a:chi…
H A Dreconciliation_of_elements.phpt14 <b:child1 xmlns:a="urn:x">bar</b:child1>
46 <b:child1 xmlns:a="urn:x">bar</b:child1>
50 <b:child1 xmlns:a="urn:x">bar</b:child1>
H A Dclone_conflicting_namespace_prefix.phpt14 <b:child1 xmlns:a="urn:x">bar</b:child1>
41 <b:child1 xmlns:a="urn:x">bar</b:child1>
55 <b:child1 xmlns:a="urn:x">bar</b:child1>
H A DNode_replaceChild_edge_cases.phpt74 $fragment->appendChild($dom->createElement("new-child1"));
/php-src/ext/dom/tests/delayed_freeing/
H A Delement_declaration.phpt11 <!ELEMENT parent (child1, child2)>
12 <!ELEMENT child1 (#PCDATA)>
30 <!ELEMENT parent (child1 , child2)>
31 <!ELEMENT child1 (#PCDATA)>
/php-src/Zend/
H A Dzend_ast.h240 ZEND_API zend_ast * ZEND_FASTCALL zend_ast_create_2(zend_ast_kind kind, zend_ast *child1, zend_ast …
241 ZEND_API zend_ast * ZEND_FASTCALL zend_ast_create_3(zend_ast_kind kind, zend_ast *child1, zend_ast …
242 ZEND_API zend_ast * ZEND_FASTCALL zend_ast_create_4(zend_ast_kind kind, zend_ast *child1, zend_ast …
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 …* zend_ast_create_ex_3(zend_ast_kind kind, zend_ast_attr attr, zend_ast *child1, zend_ast *child2,… 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 ZEND_API zend_ast * ZEND_FASTCALL zend_ast_create_list_2(zend_ast_kind kind, zend_ast *child1, zend…
[all …]
H A Dzend_ast.c127 ast->child[1] = child1; in zend_ast_create_decl()
175 ast->child[0] = child1; in zend_ast_create_2()
177 if (child1) { in zend_ast_create_2()
197 ast->child[0] = child1; in zend_ast_create_3()
200 if (child1) { in zend_ast_create_3()
222 ast->child[0] = child1; in zend_ast_create_4()
226 if (child1) { in zend_ast_create_4()
250 ast->child[0] = child1; in zend_ast_create_5()
255 if (child1) { in zend_ast_create_5()
321 list->child[0] = child1; in zend_ast_create_list_2()
[all …]
/php-src/ext/xmlwriter/tests/
H A DOO_010.phpt17 $xw->startElementNS('ns1', 'child1', 'urn:ns1');
29 <ns1:child1 ns1:att1="&lt;&gt;&quot;'&amp;" xmlns:ns1="urn:ns1">
31 </ns1:child1>
H A D011.phpt16 xmlwriter_start_element_ns($xw, 'ns1', 'child1', 'urn:ns1');
28 <ns1:child1 ns1:att1="&lt;&gt;&quot;'&amp;" xmlns:ns1="urn:ns1">
30 </ns1:child1>
H A D012.phpt16 xmlwriter_start_element_ns($xw, 'ns1', 'child1', 'urn:ns1');
30 <ns1:child1 ns1:att1="&lt;&gt;&quot;'&amp;" xmlns:ns1="urn:ns1">
32 </ns1:child1>
H A DOO_011.phpt17 $xw->startElementNS('ns1', 'child1', 'urn:ns1');
31 <ns1:child1 ns1:att1="&lt;&gt;&quot;'&amp;" xmlns:ns1="urn:ns1">
33 </ns1:child1>
H A D007.phpt13 xmlwriter_start_element_ns($xw, 'ns1', 'child1', 'urn:ns1');
31 …<ns1:child1 ns1:att1="a&amp;b" att2="double&quot; single'" ns1:att2="&lt;&gt;&quot;'&amp;" xmlns:n…
33 </ns1:child1>
H A DOO_007.phpt14 $xw->startElementNS('ns1', 'child1', 'urn:ns1');
32 …<ns1:child1 ns1:att1="a&amp;b" att2="double&quot; single'" ns1:att2="&lt;&gt;&quot;'&amp;" xmlns:n…
34 </ns1:child1>

Completed in 30 milliseconds