Home
last modified time | relevance | path

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

123456

/PHP-7.0/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 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);
H A Dbug54601.phpt2 Segfault when removing the Doctype node
/PHP-7.0/ext/dom/
H A Ddomimplementation.c156 zval *node = NULL; in PHP_METHOD() local
167 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "|ssO", &uri, &uri_len, &name, &name_len, &node, dom_do… in PHP_METHOD()
171 if (node != NULL) { in PHP_METHOD()
172 DOM_GET_OBJ(doctype, node, xmlDtdPtr, doctobj); in PHP_METHOD()
H A Delement.c529 zval *id, *node; in PHP_FUNCTION() local
535 …rameters(ZEND_NUM_ARGS(), getThis(), "OO", &id, dom_element_class_entry, &node, dom_attr_class_ent… in PHP_FUNCTION()
546 DOM_GET_OBJ(attrp, node, xmlAttrPtr, attrobj); in PHP_FUNCTION()
561 ((php_libxml_node_ptr *)oldobj->ptr)->node == (xmlNodePtr) attrp) in PHP_FUNCTION()
595 zval *id, *node; in PHP_FUNCTION() local
612 DOM_GET_OBJ(attrp, node, xmlAttrPtr, attrobj); in PHP_FUNCTION()
978 zval *id, *node; in PHP_FUNCTION() local
996 DOM_GET_OBJ(attrp, node, xmlAttrPtr, attrobj); in PHP_FUNCTION()
1017 ((php_libxml_node_ptr *)oldobj->ptr)->node == (xmlNodePtr) attrp) in PHP_FUNCTION()
1236 zval *id, *node; in PHP_FUNCTION() local
[all …]
/PHP-7.0/ext/xmlrpc/libxmlrpc/
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);
H A Dxml_to_xmlrpc.h42 xml_element* XMLRPC_VALUE_to_xml_element(XMLRPC_VALUE node);
/PHP-7.0/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 Dbug40451.phpt2 Bug #40451 (addAttribute() may crash when used with non-existent child node)
/PHP-7.0/ext/mbstring/oniguruma/
H A Dregexec.c48 if (IS_NOT_NULL(node)) { in history_tree_clear()
57 node->num_childs = 0; in history_tree_clear()
60 node->group = -1; in history_tree_clear()
68 xfree(node); in history_tree_free()
88 node->allocated = 0; in history_node_new()
89 node->num_childs = 0; in history_node_new()
90 node->group = -1; in history_node_new()
94 return node; in history_node_new()
137 clone->beg = node->beg; in history_tree_clone()
138 clone->end = node->end; in history_tree_clone()
[all …]
/PHP-7.0/ext/tidy/tests/
H A D011.phpt2 Accessing attributes of a node
H A D012.phpt8 function dump_nodes(tidyNode $node) {
10 var_dump($node->hasChildren());
11 if($node->hasChildren()) {
13 foreach($node->child as $c) {
/PHP-7.0/ext/soap/
H A Dphp_encoding.h196 zval *to_zval_user(zval *ret, encodeTypePtr type, xmlNodePtr node);
206 xmlNsPtr encode_add_ns(xmlNodePtr node, const char* ns);
/PHP-7.0/ext/xmlreader/tests/
H A D006.phpt16 // 2 read to get on the 2nd node
/PHP-7.0/ext/simplexml/
H A Dphp_simplexml.h61 php_libxml_node_ptr *node; member

Completed in 42 milliseconds

123456