Home
last modified time | relevance | path

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

123456

/PHP-5.6/ext/xmlrpc/libxmlrpc/
H A Dxml_to_xmlrpc.h42 xml_element* XMLRPC_VALUE_to_xml_element(XMLRPC_VALUE node);
/PHP-5.6/ext/dom/tests/
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-5.6/ext/simplexml/tests/
H A Dprofile01.phpt2 SimpleXML [profile]: Accessing a simple node
H A D027.phpt20 foreach($xml->children() as $node)
22 traverse_xml($node, $pad.' ');
H A Dbug69491.phpt2 Bug #69491 (simplexml doesn't correctly parse empty nodes on same line as another node)
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)
H A Dbug66084_1.phpt2 Bug #66084 simplexml_load_string() mangles empty node name, json variant
H A Dbug27010.phpt2 Bug #27010 (segfault and node text not displayed when returned from children())
/PHP-5.6/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-5.6/ext/opcache/
H A Dzend_accelerator_util_funcs.c229 zend_ast *node; in zend_ast_clone() local
232 node = emalloc(sizeof(zend_ast) + sizeof(zval)); in zend_ast_clone()
233 node->kind = ZEND_CONST; in zend_ast_clone()
234 node->children = 0; in zend_ast_clone()
235 node->u.val = (zval*)(node + 1); in zend_ast_clone()
236 *node->u.val = *ast->u.val; in zend_ast_clone()
248 ALLOC_HASHTABLE(node->u.val->value.ht); in zend_ast_clone()
259 node->kind = ast->kind; in zend_ast_clone()
260 node->children = ast->children; in zend_ast_clone()
265 (&node->u.child)[i] = NULL; in zend_ast_clone()
[all …]
H A Dzend_persist.c146 zend_ast *node; in zend_persist_ast() local
149 node = zend_accel_memdup(ast, sizeof(zend_ast) + sizeof(zval)); in zend_persist_ast()
150 node->u.val = (zval*)(node + 1); in zend_persist_ast()
151 zend_persist_zval(node->u.val TSRMLS_CC); in zend_persist_ast()
153 node = zend_accel_memdup(ast, sizeof(zend_ast) + sizeof(zend_ast*) * (ast->children - 1)); in zend_persist_ast()
155 if ((&node->u.child)[i]) { in zend_persist_ast()
156 (&node->u.child)[i] = zend_persist_ast((&node->u.child)[i] TSRMLS_CC); in zend_persist_ast()
161 return node; in zend_persist_ast()
/PHP-5.6/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-5.6/ext/dom/
H A Delement.c534 zval *id, *node; in PHP_FUNCTION() local
540 …END_NUM_ARGS() TSRMLS_CC, getThis(), "OO", &id, dom_element_class_entry, &node, dom_attr_class_ent… in PHP_FUNCTION()
551 DOM_GET_OBJ(attrp, node, xmlAttrPtr, attrobj); in PHP_FUNCTION()
566 ((php_libxml_node_ptr *)oldobj->ptr)->node == (xmlNodePtr) attrp) in PHP_FUNCTION()
600 zval *id, *node; in PHP_FUNCTION() local
617 DOM_GET_OBJ(attrp, node, xmlAttrPtr, attrobj); in PHP_FUNCTION()
958 zval *id, *node; in PHP_FUNCTION() local
976 DOM_GET_OBJ(attrp, node, xmlAttrPtr, attrobj); in PHP_FUNCTION()
997 ((php_libxml_node_ptr *)oldobj->ptr)->node == (xmlNodePtr) attrp) in PHP_FUNCTION()
1216 zval *id, *node; in PHP_FUNCTION() local
[all …]
/PHP-5.6/Zend/
H A Dzend_execute.c53 #define get_zval_ptr(op_type, node, ex, should_free, type) _get_zval_ptr(op_type, node, ex, should_… argument
54 #define get_zval_ptr_ptr(op_type, node, ex, should_free, type) _get_zval_ptr_ptr(op_type, node, ex,… argument
55 #define get_obj_zval_ptr(op_type, node, ex, should_free, type) _get_obj_zval_ptr(op_type, node, ex,… argument
56 #define get_obj_zval_ptr_ptr(op_type, node, ex, should_free, type) _get_obj_zval_ptr_ptr(op_type, n… argument
351 return node->zv; in _get_zval_ptr()
354 should_free->var = TMP_FREE(&EX_T(node->var).tmp_var); in _get_zval_ptr()
355 return &EX_T(node->var).tmp_var; in _get_zval_ptr()
366 return _get_zval_ptr_cv(node->var, type TSRMLS_CC); in _get_zval_ptr()
463 return _get_zval_ptr_ptr_cv(node->var, type TSRMLS_CC); in _get_zval_ptr_ptr()
1819 return get_zval_ptr(op_type, node, execute_data, should_free, type); in zend_get_zval_ptr()
[all …]
/PHP-5.6/ext/soap/
H A Dphp_encoding.h196 zval *to_zval_user(encodeTypePtr type, xmlNodePtr node TSRMLS_DC);
206 xmlNsPtr encode_add_ns(xmlNodePtr node, const char* ns);
/PHP-5.6/ext/simplexml/
H A Dphp_simplexml.h59 php_libxml_node_ptr *node; member
/PHP-5.6/ext/xmlreader/tests/
H A D006.phpt16 // 2 read to get on the 2nd node
/PHP-5.6/ext/standard/tests/serialize/
H A Dbug72610_2.phpt2 __wakeup can replace a copy of the object referring to the root node.

Completed in 64 milliseconds

123456