Home
last modified time | relevance | path

Searched refs:root (Results 1 – 25 of 274) sorted by relevance

1234567891011

/PHP-7.4/ext/dom/tests/
H A Dbug32615.phpt21 $root->replaceChild($frag, $root->firstChild);
27 $root->replaceChild($frag, $root->lastChild);
36 $root->insertBefore($frag, $root->firstChild);
42 $root->replaceChild($frag, $root->lastChild);
47 $root->removeChild($root->firstChild);
52 $root->removeChild($root->firstChild);
56 $root->insertBefore($frag, $root->firstChild);
69 $root->replaceChild($frag, $root->firstChild);
76 <root><first/><newsecond/><newthird/><newfourth/></root>
79 <root><first/><second/><third/><fourth/></root>
[all …]
H A DDOMCharacterData_data_basic_002.phpt12 $root = $document->createElement('root');
13 $document->appendChild($root);
16 $root->appendChild($cdata);
25 <root><![CDATA[t]]></root>
28 <root><![CDATA[100]]></root>
H A DDOMNamedNodeMap_count.phpt11 $root = $document->createElement('root');
12 $document->appendChild($root);
14 $root->setAttribute('attribute-' . $i, 'value-' . $i);
18 $root->appendChild($item);
20 var_dump($root->attributes->length);
21 var_dump($root->attributes->count());
22 var_dump(count($root->attributes));
H A DDomNodeList_count.phpt11 $root = $document->createElement('root');
12 $document->appendChild($root);
14 $root->setAttribute('attribute-' . $i, 'value-' . $i);
18 $root->appendChild($item);
20 var_dump($root->childNodes->length);
21 var_dump($root->childNodes->count());
22 var_dump(count($root->childNodes));
H A Dbug44648.phpt9 $doc->loadXML('<root/>');
11 $root = $doc->documentElement;
15 $root->setAttributeNode($attr);
21 $root->setAttribute('@def', '456');
27 $root->setAttributeNS(NULL, '@ghi', '789');
33 $root->setAttributeNS('urn::test', 'a:g@hi', '789');
38 echo $doc->saveXML($root);
45 <root/>
H A DDOMDocumentFragment_appendXML_basic_001.phpt11 $root = $document->createElement('root');
12 $document->appendChild($root);
16 $root->appendChild($fragment);
22 <root><foo id="baz">bar</foo></root>
H A DDOMAttr_ownerElement_error_001.phpt12 $root = $document->createElement('root');
13 $document->appendChild($root);
14 $attr = $root->setAttribute('category', 'books');
15 $document->removeChild($root);
16 $root = null;
H A Dregsiter_node_class.phpt18 $doc->appendChild(new DOMElement('root'));
19 $root = $doc->documentElement;
20 $root->setAttribute('a', 'a1');
21 echo get_class($root), "\n";
22 print $root->testit()."\n";
23 $attr = $root->getAttributeNode('a');
28 $attr = $root->getAttributeNode('a');
H A DDOMCharacterData_appendData_basic.phpt12 $root = $document->createElement('root');
13 $document->appendChild($root);
16 $root->appendChild($cdata);
37 <root><cdata><![CDATA[data><&"]]></cdata></root>
H A DDOMComment_appendData_basic_Sullivan.phpt12 $root = $document->createElement('root');
13 $document->appendChild($root);
16 $root->appendChild($comment);
37 <root><comment><!--data><&"--></comment></root>
H A DDOMNode_insertBefore.phpt12 $dom->loadXML('<root/>');
28 <root/>
31 <root><B/></root>
34 <root><A/><B/></root>
H A Dbug47849.phpt9 $aDOM->appendChild($aDOM->createElementNS('urn::root','r:root'));
22 <r:root xmlns:r="urn::root"><data xmlns="urn::data"/></r:root>
H A DtoString_exceptions.phpt18 '<root xmlns:ns="foo"><node attr="foo" /><node>Text</node><ns:node/><?pi foobar?></root>');
23 $root = $doc->childNodes[0];
25 $node = $root->childNodes[0];
31 $node2 = $root->childNodes[1];
37 $node3 = $root->childNodes[2];
40 $pi = $root->childNodes[3];
58 <root xmlns:ns="foo"><node attr="foo"/><node>Text</node><ns:node/><?pi foobar?></root>
/PHP-7.4/ext/ffi/tests/
H A Dlist.phpt11 private $root;
29 $this->root = $node;
33 $root = $this->root;
34 $node = $root->next;
35 while ($node != $root) {
40 FFI::free($root);
53 $root = $this->root;
54 $node = $root->next;
55 while ($node != $root) {
69 $root = $this->root;
[all …]
/PHP-7.4/ext/simplexml/tests/
H A Dbug35785.phpt8 $xml = simplexml_load_string("<root></root>");
11 $xml = simplexml_load_string("<root></root>");
15 $xml = simplexml_load_string("<root></root>");
23 <root><bla><posts><name>FooBar</name></posts></bla></root>
26 <root><bla><posts><name>FooBar</name></posts></bla></root>
28 <root><bla><posts><name>FooBar</name></posts></bla></root>
H A Dbug26976.phpt8 $root = simplexml_load_string(
10 <root>
15 </root>
18 echo $root->child[0], "\n";
19 echo $root->child[1], "\n";
20 echo $root->child[2], "\n";
21 echo $root->child[3], "\n";
H A Dprofile11.phpt8 $root = simplexml_load_string('<?xml version="1.0"?>
9 <root xmlns:reserved="reserved-ns" xmlns:special="special-ns">
12 </root>
15 var_dump($root->children('reserved-ns')->child);
16 var_dump($root->children('special-ns')->child);
17 var_dump((string)$root->children('reserved-ns')->child);
18 var_dump((string)$root->children('special-ns')->child);
19 var_dump($root->child);
H A Dbug41861.phpt8 $xml = simplexml_load_string('<root>
14 </root>');
18 echo "root(recursive): '$name' -- namespaces: ", implode(', ', $namespaces), "\n";
20 echo "root(non-recursive): '$name' -- namespaces: ", implode(', ', $namespaces), "\n";
35 root(recursive): 'root' -- namespaces: #ns1, #ns2, #ns3
36 root(non-recursive): 'root' -- namespaces:
H A Dprofile07.phpt8 $root = simplexml_load_string('<?xml version="1.0"?>
9 <root xmlns:reserved="reserved-ns">
11 </root>
14 $rsattr = $root->child->attributes('reserved');
15 $myattr = $root->child->attributes('reserved-ns');
H A Dprofile01.phpt7 $root = simplexml_load_string('<?xml version="1.0"?>
8 <root>
10 </root>
13 echo $root->child;
H A Dprofile03.phpt7 $root = simplexml_load_string('<?xml version="1.0"?>
8 <root>
10 </root>
13 echo $root->child['attribute'];
/PHP-7.4/ext/xmlreader/tests/
H A Dbug42139.phpt10 <!DOCTYPE root [
11 <!ELEMENT root ANY>
14 <root>&x;</root>
26 10, root,
27 1, root,
29 15, root,
/PHP-7.4/ext/xmlwriter/tests/
H A Dbug39504.phpt12 xmlwriter_start_dtd($xw, "root");
15 xmlwriter_start_element($xw, "root");
23 $xw->startDtd("root");
26 $xw->startElement("root");
33 <!DOCTYPE root [<!ENTITY ent2 "val2">]><root/>
36 <!DOCTYPE root [<!ENTITY c PUBLIC "-//W3C//TEXT copyright//EN" "http://www.w3.org/xmlspec/copyright…
/PHP-7.4/Zend/
H A Dzend_generators.c181 zend_generator *root = generator->node.ptr.root, *next; in zend_generator_dtor_storage() local
316 zend_generator *root = generator->node.ptr.root; in calc_gc_buffer_size() local
408 zend_generator *root = generator->node.ptr.root; in zend_generator_get_gc() local
558 leaf->node.ptr.root = generator->node.ptr.root; in zend_generator_add_child()
623 zend_generator *old_root, *root = leaf->node.ptr.root; in zend_generator_update_current() local
628 root = zend_generator_get_child(&root->node, leaf); in zend_generator_update_current()
633 while (!root->execute_data && root != generator) { in zend_generator_update_current()
637 root = zend_generator_get_child(&root->node, leaf); in zend_generator_update_current()
664 leaf->node.ptr.root = root; in zend_generator_update_current()
683 root = root->node.parent; in zend_generator_update_current()
[all …]
/PHP-7.4/ext/opcache/tests/
H A Dbug66338.phpt11 $root = str_replace('.php', "", __FILE__);
12 $base = basename( $root );
14 file_put_contents( "$root-Officials.inc", '<?php
18 file_put_contents( "$root-clientUS.php", '<?php
20 require \''.$root.'-Officials.inc\';
24 file_put_contents( "$root-clientUK.php", '<?php
26 require \''.$root.'-Officials.inc\';
38 unlink("$root-Officials.inc");
39 unlink("$root-clientUS.php");
40 unlink("$root-clientUK.php");

Completed in 35 milliseconds

1234567891011