Home
last modified time | relevance | path

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

1234

/PHP-8.0/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 Dbug39297.phpt11 public $children = array();
22 $this->children[$cannonicalName] = $value;
29 return $this->children[$cannonicalName];
H A Dgc_017.phpt9 public $children;
17 $this->children[] = $node;
22 unset($this->children);
/PHP-8.0/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.c1313 if (node && node->children && node->children->content) { in model_to_zval_object()
1502 if (val && val->children && val->children->content) { in to_zval_object_ex()
1622 if (property->children && property->children->content && in model_to_xml_object()
1644 if (property->children && property->children->content && in model_to_xml_object()
1900 if (dummy->children && dummy->children->content) { in to_xml_object()
2448 attr->children && attr->children->content) { in to_zval_array()
2482 attr->children && attr->children->content) { in to_zval_array()
2491 attr->children && attr->children->content) { in to_zval_array()
2570 attr->children && attr->children->content) { in to_zval_array()
2973 if (dummy && dummy->children && dummy->children->content) { in to_xml_list()
[all …]
H A Dphp_schema.c184 trav = schema->children; in load_schema()
365 create_encoder(sdl, cur_type, ns->children->content, name->children->content); in schema_simpleType()
441 trav = listType->children; in schema_list()
661 trav = restType->children; in schema_restriction_simpleContent()
761 trav = restType->children; in schema_restriction_complexContent()
886 trav = extType->children; in schema_extension_simpleContent()
941 trav = extType->children; in schema_extension_complexContent()
1029 trav = all->children; in schema_all()
1255 trav = seqType->children; in schema_sequence()
1412 create_encoder(sdl, cur_type, ns->children->content, name->children->content); in schema_complexType()
[all …]
/PHP-8.0/ext/dom/
H A Dparentnode.c43 first = nodep->children; in dom_parent_node_first_element_child_read()
110 first = nodep->children; in dom_parent_node_child_element_count()
233 fragment->children = NULL; in dom_fragment_assign_parent_node()
247 newchild = fragment->children; in dom_parent_node_append()
285 newchild = fragment->children; in dom_parent_node_prepend()
374 xmlNodePtr children; in dom_child_node_remove() local
394 children = child->parent->children; in dom_child_node_remove()
395 if (!children) { in dom_child_node_remove()
400 while (children) { in dom_child_node_remove()
401 if (children == child) { in dom_child_node_remove()
[all …]
/PHP-8.0/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.phpt40 $children = $root->childNodes;
41 $len = $children->length;
43 for ($index = $children->length - 1; $index >=0; $index--) {
45 $current = $children->item($index);
51 $children = $root->childNodes;
52 $len = $children->length;
54 for ($index = 0; $index < $children->length; $index++) {
56 $current = $children->item($index);
H A DDOMNode_cloneNode_basic.phpt41 $children = $root->childNodes;
42 $len = $children->length;
43 for ($index = $children->length - 1; $index >=0; $index--) {
44 $current = $children->item($index);
51 $first_course = $children->item(0);
69 $children = $root->childNodes;
70 for ($index = 0; $index < $children->length; $index++) {
72 dumpcourse($children->item($index));
H A Ddom_comment_variation.phpt18 $children = $root->childNodes;
20 for ($index = 0; $index < $children->length; $index++) {
22 $current = $children->item($index);
H A Ddom_comment_basic.phpt21 $children = $root->childNodes;
23 for ($index = 0; $index < $children->length; $index++) {
25 $current = $children->item($index);
/PHP-8.0/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-8.0/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.phpt85 protected $children = [];
151 $this->children[] = $child;
155 * @param array $children
157 public function setChildren(array $children)
159 $this->children = $children;
167 return $this->children;
229 return $this->children[$this->index];
269 return count($this->children);
277 return !empty($this->children);
300 [children:protected] => Array
[all …]
/PHP-8.0/ext/standard/tests/array/
H A Dbug48854.phpt8 'children' => array(
15 'children' => array(
29 ["children"]=>
38 ["children"]=>
/PHP-8.0/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-8.0/ext/soap/tests/bugs/
H A Dbug37013.phpt31 var $children;
45 $p->children = array( $p2, $p3 );
58children SOAP-ENC:arrayType="SOAP-ENC:Struct[2]" xsi:type="SOAP-ENC:Array"><item href="#ref1"/><it…

Completed in 74 milliseconds

1234