Home
last modified time | relevance | path

Searched refs:node (Results 76 – 100 of 137) sorted by relevance

123456

/PHP-7.4/ext/dom/tests/
H A Ddom_xinclude.phpt23 foreach ($dom->documentElement->childNodes as $node) {
24 print $node->nodeName."\n";
H A DDOMNode_hasChildNodes.phpt24 echo "Remove node and save\n";
43 Remove node and save
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.phpt12 $xml = '<node xmlns:pre="http://foo.com/tr/pre"
14 pre:type="bar" type="foo" ><sub /></node>';
H A DDOMDocument_createEntityReference_basic.phpt2 DOMDocument::createEntityReference() should create a new entity reference node
H A Dbug76738.phpt211 foreach($nodes as $node)
214 while($node->childNodes->length > 0)
216 $childNode = $node->childNodes->item(0);
227 $node->parentNode->replaceChild($fragment, $node);
H A DDOMNode_insertBefore_error1.phpt2 DOMNode::insertBefore() should fail if node belongs to another document
H A DDOMNode_normalize_basic.phpt17 * Add another text node to title. Calculate the number of title text nodes (2).
39 // add a second text node to title
H A Ddomchardata.phpt16 $node = $dom->documentElement;
19 $node->appendChild($charnode);
/PHP-7.4/ext/xmlrpc/libxmlrpc/
H A Dxml_to_xmlrpc.h42 xml_element* XMLRPC_VALUE_to_xml_element(XMLRPC_VALUE node);
H A Dxml_to_dandarpc.h41 xml_element* DANDARPC_VALUE_to_xml_element(XMLRPC_VALUE node);
H A Dxml_to_soap.h41 xml_element* SOAP_VALUE_to_xml_element(XMLRPC_VALUE node);
/PHP-7.4/ext/dom/
H A Ddomimplementation.c159 zval *node = NULL; in PHP_METHOD() local
170 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "|ssO", &uri, &uri_len, &name, &name_len, &node, dom_do… in PHP_METHOD()
174 if (node != NULL) { in PHP_METHOD()
175 DOM_GET_OBJ(doctype, node, xmlDtdPtr, doctobj); in PHP_METHOD()
/PHP-7.4/ext/opcache/tests/
H A Dbug77743.phpt2 Bug #77743: Incorrect pi node insertion for jmpznz with identical successors
/PHP-7.4/Zend/tests/
H A Dremove_predecessor_of_pi_node.phpt2 Regression test for incorrect update of pi node users when removing a predecessor block
H A Dbug78502.phpt26 tree_map($tree, 'children', function ($node) {});
/PHP-7.4/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 Dbug61335.phpt2 Bug #61335 - Access to array node returns wrong truth value
H A Dbug76712.phpt2 BUg #76712 (Assignment of empty string creates extraneous text node)
H A Dbug40451.phpt2 Bug #40451 (addAttribute() may crash when used with non-existent child node)
/PHP-7.4/ext/tidy/tests/
H A D011.phpt2 Accessing attributes of a node
/PHP-7.4/ext/simplexml/
H A Dphp_simplexml.h56 php_libxml_node_ptr *node; member
/PHP-7.4/Zend/
H A Dzend_execute.c112 #define get_zval_ptr(op_type, node, should_free, type) _get_zval_ptr(op_type, node, should_free, ty… argument
117 #define get_zval_ptr_ptr(op_type, node, should_free, type) _get_zval_ptr_ptr(op_type, node, should_… argument
405 return RT_CONSTANT(opline, node); in _get_zval_ptr()
426 return RT_CONSTANT(opline + 1, node); in _get_op_data_zval_ptr_r()
447 return RT_CONSTANT(opline, node); in _get_zval_ptr_deref()
468 return RT_CONSTANT(opline + 1, node); in _get_op_data_zval_ptr_deref_r()
489 return RT_CONSTANT(opline, node); in _get_zval_ptr_undef()
491 return EX_VAR(node.var); in _get_zval_ptr_undef()
4750 ret = RT_CONSTANT(opline, *node); in zend_get_zval_ptr()
4755 ret = EX_VAR(node->var); in zend_get_zval_ptr()
[all …]

Completed in 111 milliseconds

123456