Home
last modified time | relevance | path

Searched refs:root (Results 26 – 50 of 274) sorted by relevance

1234567891011

/PHP-7.4/ext/dom/tests/
H A DDOMText_appendData_basic.phpt12 $root = $document->createElement('root');
13 $document->appendChild($root);
16 $root->appendChild($text);
38 <root><text>data&gt;&lt;&amp;"</text></root>
H A DDOMNode_hasChildNodes.phpt13 $dom->loadXML('<root/>');
21 $dom->loadXML('<root><a/></root>');
32 $dom->loadXML('<root><a/><b/></root>');
38 <root/>
45 <root/>
H A Ddomxpath.phpt24 $dom->loadXML('<root xmlns="urn::default"><child>myval</child></root>');
45 $root = $dom->documentElement;
46 $root->appendChild($dom->createElementNS("urn::default", "testnode", 3));
47 $root->appendChild($dom->createElementNS("urn::default", "testnode", 4));
48 $root->appendChild($dom->createElementNS("urn::default", "testnode", 4));
49 $root->appendChild($dom->createElementNS("urn::default", "testnode", 5));
H A Dbug41374.phpt9 <root>foo<child />baz</root>
15 $root = $doc->documentElement;
16 $foo = $root->firstChild;
20 $bar = $root->insertBefore($doc->createTextNode("bar"), $foo->nextSibling);
H A DDOMCharacterData_substringData_basic_001.phpt12 $root = $document->createElement('root');
13 $document->appendChild($root);
16 $root->appendChild($cdata);
H A Dbug36756.phpt10 $dom->loadXML('<root><child/></root>');
12 $node = $xpath->query('/root')->item(0);
18 $dom->loadXML('<root><child/></root>');
28 root
H A DDOMCharacterData_deleteData_basic_001.phpt11 $root = $document->createElement('root');
12 $document->appendChild($root);
15 $root->appendChild($cdata);
H A DDOMCharacterData_deleteData_error_002.phpt11 $root = $document->createElement('root');
12 $document->appendChild($root);
15 $root->appendChild($cdata);
H A DDOMDocumentFragment_appendXML_error_003.phpt11 $root = $document->createElement('root');
12 $document->appendChild($root);
16 $root->appendChild($fragment);
H A DDOMNode_replaceChild_basic.phpt12 <root><foo><bar/><baz/></foo><spam><eggs/><eggs/></spam></root>');
36 <root><foo><qux/><baz/></foo><spam><eggs/><eggs/></spam></root>
41 <root><foo><baz/></foo><spam><qux/><eggs/></spam></root>
44 <root><foo><spam><qux/><eggs/></spam></foo></root>
/PHP-7.4/ext/simplexml/tests/
H A Dbug37076.phpt7 $xml = simplexml_load_string("<root><foo /></root>");
15 <root><foo>foobar</foo></root>
H A Dbug37386.phpt8 $sx1 = new SimpleXMLElement("<root />");
22 <root><node>node1</node><node>node2</node></root>
25 <root><node>New Value</node><node>node2</node></root>
H A Dprofile10.phpt8 $root = simplexml_load_string('<?xml version="1.0"?>
9 <root xmlns:reserved="reserved-ns" xmlns:special="special-ns">
11 </root>
14 $rsattr = $root->child->attributes('reserved-ns');
15 $spattr = $root->child->attributes('special-ns');
H A Dprofile02.phpt7 $root = simplexml_load_string('<?xml version="1.0"?>
8 <root>
11 </root>
14 foreach ($root->child as $child) {
H A Dprofile04.phpt7 $root = simplexml_load_string('<?xml version="1.0"?>
8 <root xmlns:reserved="reserved-ns">
10 </root>
13 echo $root->children('reserved-ns')->child;
H A Dprofile05.phpt8 $root = simplexml_load_string('<?xml version="1.0"?>
9 <root xmlns:reserved="reserved-ns">
11 </root>
14 echo $root->children('reserved')->child;
H A Dprofile08.phpt8 $root = simplexml_load_string('<?xml version="1.0"?>
9 <root xmlns:reserved="reserved-ns">
11 </root>
14 echo $root->child['attribute'];
H A Dprofile09.phpt8 $root = simplexml_load_string('<?xml version="1.0"?>
9 <root xmlns:reserved="reserved-ns">
11 </root>
14 echo $root->child;
H A Dprofile06.phpt8 $root = simplexml_load_string('<?xml version="1.0"?>
9 <root xmlns:reserved="reserved-ns">
11 </root>
14 $attr = $root->child->attributes('reserved-ns');
H A Dbug37076_1.phpt7 $xml = simplexml_load_string("<root><foo /></root>");
17 <root><foo/></root>
/PHP-7.4/ext/xml/tests/
H A Dbug27908.phpt16 xml_parse($xp, '<root></root>',TRUE);
21 x_default_handler <root>
22 x_default_handler </root>
/PHP-7.4/ext/spl/tests/
H A Diterator_006.phpt8 $root = simplexml_load_string('<?xml version="1.0"?>
9 <root>
12 </root>
15 foreach (new IteratorIterator($root->child) as $child) {
/PHP-7.4/Zend/
H A Dzend_generators.h51 zend_generator *root; /* if 0 children */ member
116 zend_generator *root; in zend_generator_get_current() local
124 root = leaf->node.ptr.root; in zend_generator_get_current()
126 if (EXPECTED(root->execute_data && root->node.parent == NULL)) { in zend_generator_get_current()
128 return root; in zend_generator_get_current()
/PHP-7.4/ext/libxml/tests/
H A Dbug42112.phpt8 <root><child xml:id="id1">baz</child></root>
26 $root = $doc->documentElement;
27 print 'Root Node: '.$root->nodeName."\n";
31 Root Node: root
/PHP-7.4/ext/intl/tests/
H A Dcollator_create3.phpt24 'root',
62 ULOC_ACTUAL_LOCALE = 'root'
69 ULOC_VALID_LOCALE = 'root'
70 ULOC_ACTUAL_LOCALE = 'root'
75 Locale: 'root'
76 ULOC_REQUESTED_LOCALE = 'root'
77 ULOC_VALID_LOCALE = 'root'
78 ULOC_ACTUAL_LOCALE = 'root'

Completed in 43 milliseconds

1234567891011