Home
last modified time | relevance | path

Searched refs:children (Results 1 – 25 of 112) sorted by relevance

12345

/php-src/Zend/tests/
H A Dunset_prop_recursion.phpt7 public $children = [];
10 $this->children[] = $node;
14 unset($this->children);
26 ["children"]=>
32 ["children"]=>
40 ["children"]=>
52 ["children"]=>
62 ["children"]=>
H A Dbug63635.phpt7 public $children = array();
11 $parent->children[] = $this;
13 $this->children[] = $this;
17 $this->children = NULL;
H A Dbug71067.phpt10 'children' => []
12 $arr->children[] = 1;
25 [children] => Array
H A Dbug78502.phpt9 'children' => [
11 ['name' => 'c', 'quant' => 1, 'children' => [
26 tree_map($tree, 'children', function ($node) {});
H A Dgc_017.phpt9 public $children;
17 $this->children[] = $node;
22 unset($this->children);
/php-src/ext/soap/
H A Dphp_packet_soap.c54 trav = response->children; in parse_packet_soap()
101 trav = env->children; in parse_packet_soap()
210 tmp = get_node(fault->children, "Code"); in parse_packet_soap()
212 tmp = get_node(tmp->children, "Value"); in parse_packet_soap()
218 tmp = get_node(fault->children,"Reason"); in parse_packet_soap()
221 tmp = get_node(tmp->children,"Text"); in parse_packet_soap()
250 resp = body->children; in parse_packet_soap()
306 if (val == NULL && cur->children && cur->children->next == NULL) { in parse_packet_soap()
307 val = cur->children; in parse_packet_soap()
337 val = resp->children; in parse_packet_soap()
[all …]
H A Dphp_encoding.c1317 if (node && node->children && node->children->content) { in model_to_zval_object()
1511 if (val && val->children && val->children->content) { in to_zval_object_ex()
1633 if (property->children && property->children->content && in model_to_xml_object()
1655 if (property->children && property->children->content && in model_to_xml_object()
1913 if (dummy->children && dummy->children->content) { in to_xml_object()
2468 attr->children && attr->children->content) { in to_zval_array()
2502 attr->children && attr->children->content) { in to_zval_array()
2511 attr->children && attr->children->content) { in to_zval_array()
2590 attr->children && attr->children->content) { in to_zval_array()
3005 if (dummy && dummy->children && dummy->children->content) { in to_xml_list()
[all …]
H A Dphp_schema.c190 trav = schema->children; in load_schema()
374 create_encoder(sdl, cur_type, ns->children->content, name->children->content); in schema_simpleType()
450 trav = listType->children; in schema_list()
670 trav = restType->children; in schema_restriction_simpleContent()
770 trav = restType->children; in schema_restriction_complexContent()
895 trav = extType->children; in schema_extension_simpleContent()
950 trav = extType->children; in schema_extension_complexContent()
1038 trav = all->children; in schema_all()
1264 trav = seqType->children; in schema_sequence()
1424 create_encoder(sdl, cur_type, ns->children->content, name->children->content); in schema_complexType()
[all …]
/php-src/ext/dom/tests/
H A Ddom001.phpt18 //$children = $dom->children();
19 //print_node_list($children);
27 print_node_list($children);
39 // The children of this parent are the same children as one above
41 $children = $parent->childNodes;
42 print_node_list($children);
69 print_node_list($children);
81 print_node_list($children);
85 print_node_list($children);
107 --------- children of root
[all …]
H A DDOMNode_removeChild_basic.phpt38 $children = $root->childNodes;
39 $len = $children->length;
41 for ($index = $children->length - 1; $index >=0; $index--) {
43 $current = $children->item($index);
49 $children = $root->childNodes;
50 $len = $children->length;
52 for ($index = 0; $index < $children->length; $index++) {
54 $current = $children->item($index);
H A DDOMNode_cloneNode_basic.phpt39 $children = $root->childNodes;
40 $len = $children->length;
41 for ($index = $children->length - 1; $index >=0; $index--) {
42 $current = $children->item($index);
49 $first_course = $children->item(0);
67 $children = $root->childNodes;
68 for ($index = 0; $index < $children->length; $index++) {
70 dumpcourse($children->item($index));
H A Ddom_comment_variation.phpt16 $children = $root->childNodes;
18 for ($index = 0; $index < $children->length; $index++) {
20 $current = $children->item($index);
H A Ddom_comment_basic.phpt19 $children = $root->childNodes;
21 for ($index = 0; $index < $children->length; $index++) {
23 $current = $children->item($index);
/php-src/ext/simplexml/tests/
H A Dbug41861.phpt24 foreach ($xml->children($ns) as $child)
29 echo "children($ns): '$name' -- namespaces: ", implode(', ', $namespaces), "\n";
36 children(): 'first_node_no_ns' -- namespaces:
37 children(): 'last_node_no_ns' -- namespaces:
38 children(#ns1): 'node1' -- namespaces: #ns1
39 children(#ns2): 'node2' -- namespaces: #ns2
40 children(#ns3): 'node3' -- namespaces: #ns3
H A D032.phpt11 <children>
13 </children>
22 <children>
24 </children>
H A Dprofile11.phpt15 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);
H A D019.phpt2 SimpleXML: foreach with children()
36 foreach($sxe->children() as $name => $data) {
43 foreach(clone $sxe->children() as $name => $data) {
50 foreach($sxe->elem11->children() as $name => $data) {
57 foreach($sxe->elem1->children() as $name => $data) {
H A Dbug72971_2.phpt12 var_dump($xml->children('ns')->foo);
14 $xml->children('ns')->foo = 'ns:new-bar';
16 var_dump($xml->children('ns')->foo);
/php-src/ext/spl/tests/
H A Dbug66405.phpt25 $children = parent::getChildren();
26 if (is_object($children)) {
27 echo get_class($children) . " $children\n";
29 echo gettype($children) . " $children\n";
31 return $children;
H A Dbug65328.phpt82 protected $children = [];
148 $this->children[] = $child;
152 * @param array $children
154 public function setChildren(array $children)
156 $this->children = $children;
164 return $this->children;
223 return $this->children[$this->index];
251 return count($this->children);
256 return !empty($this->children);
276 [children:protected] => Array
[all …]
/php-src/ext/standard/tests/array/
H A Dbug48854.phpt8 'children' => array(
15 'children' => array(
29 ["children"]=>
38 ["children"]=>
/php-src/ext/dom/tests/modern/spec/
H A DNodeList_dimensions.phpt9 $children = $dom->documentElement->childNodes;
16 …var_dump($children[$value] ? $children[$value]->nodeName : "N/A", isset($children[$value]), empty(…
/php-src/sapi/phpdbg/
H A Dphpdbg_cmd.h158 #define PHPDBG_COMMAND_D_EXP(name, tip, alias, handler, children, args, parent, flags) \ argument
159 {PHPDBG_STRL(#name), tip, sizeof(tip)-1, alias, phpdbg_do_##handler, children, args, parent, flags}
161 #define PHPDBG_COMMAND_D_EX(name, tip, alias, handler, children, args, flags) \ argument
162 {PHPDBG_STRL(#name), tip, sizeof(tip)-1, alias, phpdbg_do_##handler, children, args, NULL, flags}
164 #define PHPDBG_COMMAND_D(name, tip, alias, children, args, flags) \ argument
165 {PHPDBG_STRL(#name), tip, sizeof(tip)-1, alias, phpdbg_do_##name, children, args, NULL, flags}
/php-src/ext/soap/tests/bugs/
H A Dbug37013.phpt29 var $children;
43 $p->children = array( $p2, $p3 );
56children SOAP-ENC:arrayType="SOAP-ENC:Struct[2]" xsi:type="SOAP-ENC:Array"><item href="#ref1"/><it…
/php-src/ext/dom/
H A Dparentnode.c40 first = nodep->children; in dom_parent_node_first_element_child_read()
94 xmlNodePtr first = nodep->children; in dom_parent_node_child_element_count()
138 if (parent->children == NULL) { in dom_add_child_without_merging()
139 parent->children = child; in dom_add_child_without_merging()
167 xmlNodePtr iter = node->children; in dom_fragment_common_hierarchy_check_part()
405 newNode = newNode->children; in dom_zvals_to_single_node()
460 if (parentNode->children) { in php_dom_pre_insert_helper()
466 parentNode->children = newchild; in php_dom_pre_insert_helper()
528 node->children = NULL; in dom_insert_node_list_unchecked()
711 xmlNodePtr children = child->parent->children; in dom_child_removal_preconditions() local
[all …]

Completed in 64 milliseconds

12345