Home
last modified time | relevance | path

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

1234

/PHP-7.4/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.phpt11 'children' => []
13 $arr->children[] = 1;
26 [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-7.4/ext/soap/
H A Dphp_packet_soap.c56 trav = response->children; in parse_packet_soap()
103 trav = env->children; in parse_packet_soap()
212 tmp = get_node(fault->children, "Code"); in parse_packet_soap()
214 tmp = get_node(tmp->children, "Value"); in parse_packet_soap()
220 tmp = get_node(fault->children,"Reason"); in parse_packet_soap()
223 tmp = get_node(tmp->children,"Text"); in parse_packet_soap()
252 resp = body->children; in parse_packet_soap()
308 if (val == NULL && cur->children && cur->children->next == NULL) { in parse_packet_soap()
309 val = cur->children; in parse_packet_soap()
339 val = resp->children; in parse_packet_soap()
[all …]
H A Dphp_encoding.c1315 if (node && node->children && node->children->content) { in model_to_zval_object()
1504 if (val && val->children && val->children->content) { in to_zval_object_ex()
1624 if (property->children && property->children->content && in model_to_xml_object()
1646 if (property->children && property->children->content && in model_to_xml_object()
1902 if (dummy->children && dummy->children->content) { in to_xml_object()
2450 attr->children && attr->children->content) { in to_zval_array()
2484 attr->children && attr->children->content) { in to_zval_array()
2493 attr->children && attr->children->content) { in to_zval_array()
2572 attr->children && attr->children->content) { in to_zval_array()
2975 if (dummy && dummy->children && dummy->children->content) { in to_xml_list()
[all …]
H A Dphp_schema.c186 trav = schema->children; in load_schema()
367 create_encoder(sdl, cur_type, ns->children->content, name->children->content); in schema_simpleType()
443 trav = listType->children; in schema_list()
663 trav = restType->children; in schema_restriction_simpleContent()
763 trav = restType->children; in schema_restriction_complexContent()
888 trav = extType->children; in schema_extension_simpleContent()
943 trav = extType->children; in schema_extension_complexContent()
1031 trav = all->children; in schema_all()
1257 trav = seqType->children; in schema_sequence()
1414 create_encoder(sdl, cur_type, ns->children->content, name->children->content); in schema_complexType()
[all …]
/PHP-7.4/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-7.4/ext/simplexml/tests/
H A Dbug41861.phpt24 foreach ($xml->children($ns) as $child)
29 echo "children($ns): '$name' -- namespaces: ", implode(', ', $namespaces), "\n";
37 children(): 'first_node_no_ns' -- namespaces:
38 children(): 'last_node_no_ns' -- namespaces:
39 children(#ns1): 'node1' -- namespaces: #ns1
40 children(#ns2): 'node2' -- namespaces: #ns2
41 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-7.4/ext/xmlrpc/libxmlrpc/
H A Dxml_to_xmlrpc.c160 iter = (xml_element*)Q_Head(&el->children); in xml_element_to_XMLRPC_REQUEST_worker()
312 Q_PushTail(&param->children, value); in XMLRPC_to_xml_element_worker()
316 Q_PushTail(&value->children, elem_val); in XMLRPC_to_xml_element_worker()
329 Q_PushTail(&member->children, name); in XMLRPC_to_xml_element_worker()
330 Q_PushTail(&member->children, value); in XMLRPC_to_xml_element_worker()
331 Q_PushTail(&value->children, elem_val); in XMLRPC_to_xml_element_worker()
340 Q_PushTail(&value->children, elem_val); in XMLRPC_to_xml_element_worker()
353 Q_PushTail(&value->children, elem_val); in XMLRPC_to_xml_element_worker()
392 Q_PushTail(&wrapper->children, method); in XMLRPC_REQUEST_to_xml_element()
396 Q_PushTail(&wrapper->children, in XMLRPC_REQUEST_to_xml_element()
[all …]
/PHP-7.4/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);
299 [children:protected] => Array
[all …]
/PHP-7.4/ext/standard/tests/array/
H A Dbug48854.phpt8 'children' => array(
15 'children' => array(
29 ["children"]=>
38 ["children"]=>
/PHP-7.4/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…
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_cmd.h164 #define PHPDBG_COMMAND_D_EXP(name, tip, alias, handler, children, args, parent, flags) \ argument
165 {PHPDBG_STRL(#name), tip, sizeof(tip)-1, alias, phpdbg_do_##handler, children, args, parent, flags}
167 #define PHPDBG_COMMAND_D_EX(name, tip, alias, handler, children, args, flags) \ argument
168 {PHPDBG_STRL(#name), tip, sizeof(tip)-1, alias, phpdbg_do_##handler, children, args, NULL, flags}
170 #define PHPDBG_COMMAND_D(name, tip, alias, children, args, flags) \ argument
171 {PHPDBG_STRL(#name), tip, sizeof(tip)-1, alias, phpdbg_do_##name, children, args, NULL, flags}

Completed in 66 milliseconds

1234