Home
last modified time | relevance | path

Searched refs:node (Results 226 – 250 of 343) sorted by relevance

12345678910>>...14

/php-src/ext/dom/tests/
H A DDOMNode_hasChildNodes.phpt24 echo "Remove node and save\n";
43 Remove node and save
H A Ddom_xinclude.phpt24 foreach ($dom->documentElement->childNodes as $node) {
25 print $node->nodeName."\n";
H A Dbug28721.phpt7 function print_node(DomNode $node) {
8 echo "name (value): " . $node->nodeName . " (" . $node->nodeValue . ")\n";
11 function print_node_r(DomNode $node) {
14 print_node($node);
17 if ( $node->parentNode )
18 print_node($node->parentNode);
23 if ( $node->previousSibling )
24 print_node($node->previousSibling);
29 if ( $node->nextSibling )
30 print_node($node->nextSibling);
[all …]
H A Dbug38474.phpt13 $xml = '<node xmlns:pre="http://foo.com/tr/pre"
15 pre:type="bar" type="foo" ><sub /></node>';
H A Dbug67440.phpt52 echo "-- fragment to document where first element is not a text node --\n"; case3('appendChild'); e…
58 echo "-- fragment to document where first element is not a text node --\n"; case3('insertBefore'); …
64 echo "-- fragment to document where first element is not a text node --\n"; case3('insertBefore'); …
84 -- fragment to document where first element is not a text node --
112 -- fragment to document where first element is not a text node --
140 -- fragment to document where first element is not a text node --
H A Dgh11625.phpt2 …H-11625 (DOMElement::replaceWith() doesn't replace node with DOMDocumentFragment but just deletes
H A DDOMDocument_createEntityReference_basic.phpt2 DOMDocument::createEntityReference() should create a new entity reference node
/php-src/ext/dom/lexbor/lexbor/dom/interfaces/
H A Ddocument_type.h23 lxb_dom_node_t node; member
52 data = lxb_dom_attr_data_by_id(doc_type->node.owner_document->attrs, in lxb_dom_document_type_name()
H A Ddocument_fragment.h19 lxb_dom_node_t node; member
H A Dcharacter_data.h21 lxb_dom_node_t node; member
/php-src/ext/dom/
H A Dphp_dom.stub.php360 public function appendChild(DOMNode $node) {} argument
410 public function replaceChild(DOMNode $node, DOMNode $child) {} argument
819 public function importNode(DOMNode $node, bool $deep = false) {} argument
874 public function adoptNode(DOMNode $node): DOMNode|false {} argument
1025 function dom_import_simplexml(object $node): DOMElement {} argument
1201 public function insertBefore(Node $node, ?Node $child): Node {} argument
1202 public function appendChild(Node $node): Node {} argument
1203 public function replaceChild(Node $node, Node $child): Node {} argument
1546 public function adoptNode(Node $node): Node {} argument
1600 public function saveHTML(?Node $node = null): string {} argument
[all …]
/php-src/ext/dom/tests/modern/spec/
H A DNode_lookupPrefix.phpt24 echo "--- NULL case because invalid node type ---\n";
50 --- NULL case because invalid node type ---
H A Dpre_insertion_validation.phpt11 echo "--- Trying to insert text node into the document ---\n";
19 $dom->append($dom->createTextNode("text node"));
24 $dom->append($dom->createCDATASection("text node"));
97 --- Trying to insert text node into the document ---
/php-src/ext/opcache/tests/
H A Dbug77743.phpt2 Bug #77743: Incorrect pi node insertion for jmpznz with identical successors
/php-src/ext/simplexml/tests/
H A Dprofile01.phpt2 SimpleXML [profile]: Accessing a simple node
H A Dbug69491.phpt2 Bug #69491 (simplexml doesn't correctly parse empty nodes on same line as another node)
H A D027.phpt20 foreach($xml->children() as $node)
22 traverse_xml($node, $pad.' ');
H A Dbug76712.phpt2 BUg #76712 (Assignment of empty string creates extraneous text node)
/php-src/ext/xsl/
H A Dxsltprocessor.c49 static void xsl_proxy_factory(xmlNodePtr node, zval *child, dom_object *intern, xmlXPathParserConte… in xsl_proxy_factory() argument
51 ZEND_ASSERT(node->type != XML_NAMESPACE_DECL); in xsl_proxy_factory()
63 if (node->doc != transform_ctxt->document->doc) { in xsl_proxy_factory()
64 node = xmlDocCopyNode(node, intern->document->ptr, 1); in xsl_proxy_factory()
66 php_dom_create_object(node, child, intern); in xsl_proxy_factory()
296 xmlNodePtr node = NULL; in php_xsl_apply_stylesheet() local
306 node = php_libxml_import_node(docp); in php_xsl_apply_stylesheet()
308 if (node) { in php_xsl_apply_stylesheet()
309 doc = node->doc; in php_xsl_apply_stylesheet()
/php-src/ext/dom/tests/modern/xml/
H A DXMLDocument_xpath.phpt43 echo "--- Get a namespace node ---\n";
69 --- Get a namespace node ---
H A DXMLDocument_saveXML_node.phpt2 DOM\XMLDocument::saveXML(File) node
/php-src/ext/dom/tests/modern/html/interactions/
H A DgetLineNo_65536.phpt2 getLineNo() returns the line number of the node >= 65536
/php-src/ext/xsl/tests/
H A Dxsltprocessor_importStylesheet-invalidparam.phpt18 XSLTProcessor::importStylesheet(): Argument #1 ($stylesheet) must be a valid XML node
/php-src/Zend/tests/match/
H A Dmatch_of_phi_optimization.phpt2 Unreachable code elimination when match argument is a phi node
/php-src/ext/tidy/tests/
H A D011.phpt2 Accessing attributes of a node

Completed in 30 milliseconds

12345678910>>...14