Home
last modified time | relevance | path

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

/PHP-8.1/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-8.1/ext/dom/tests/
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 ---
79 --- Namespaces of child1/foo (both nodes) ---
/PHP-8.1/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.c128 ast->child[1] = child1; in zend_ast_create_decl()
176 ast->child[0] = child1; in zend_ast_create_2()
178 if (child1) { in zend_ast_create_2()
198 ast->child[0] = child1; in zend_ast_create_3()
201 if (child1) { in zend_ast_create_3()
223 ast->child[0] = child1; in zend_ast_create_4()
227 if (child1) { in zend_ast_create_4()
251 ast->child[0] = child1; in zend_ast_create_5()
256 if (child1) { in zend_ast_create_5()
322 list->child[0] = child1; in zend_ast_create_list_2()
[all …]
/PHP-8.1/ext/xmlwriter/tests/
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 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 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 26 milliseconds