Home
last modified time | relevance | path

Searched refs:child (Results 26 – 50 of 159) sorted by relevance

1234567

/PHP-7.2/ext/standard/tests/array/
H A Darray_map_object3.phpt12 * 1) child class method using parent object
13 * 2) parent class method using child object
14 * 3) child class method using parent class
15 * 4) parent class method using child class
50 echo "-- accessing parent method from child class --\n";
53 echo "-- accessing child method from parent class --\n";
56 echo "-- accessing parent method using child class object --\n";
66 -- accessing parent method from child class --
75 -- accessing child method from parent class --
79 -- accessing parent method using child class object --
[all …]
/PHP-7.2/ext/soap/tests/interop/Round3/GroupE/
H A Dr3_groupE_list_003w.phpt13 $this->child = $c;
26child xsi:type="ns2:List"><varInt xsi:type="xsd:int">2</varInt><varString xsi:type="xsd:string">ar…
28child xsi:type="ns2:List"><varInt xsi:type="xsd:int">2</varInt><varString xsi:type="xsd:string">ar…
34 ["child"]=>
40 ["child"]=>
46 ["child"]=>
H A Dr3_groupE_list_002w.phpt13 $this->child = $c;
26child xsi:type="ns2:List"><varInt xsi:type="xsd:int">2</varInt><varString xsi:type="xsd:string">ar…
28child xsi:type="ns2:List"><varInt xsi:type="xsd:int">2</varInt><varString xsi:type="xsd:string">ar…
34 ["child"]=>
40 ["child"]=>
/PHP-7.2/ext/dom/tests/
H A DDOMNode_normalize_basic.phpt36 echo "Number of child nodes of title = ";
43 echo "Number of child nodes of title after adding second title = ";
49 echo "Number of child nodes of title after normalizing author = ";
56 echo "Number of child nodes of title after normalizing title = ";
61 Number of child nodes of title = int(1)
62 Number of child nodes of title after adding second title = int(2)
63 Number of child nodes of title after normalizing author = int(2)
64 Number of child nodes of title after normalizing title = int(1)
H A Ddom_comment_basic.phpt24 echo "--- child $index ---\n";
31 --- child 0 ---
35 --- child 1 ---
38 --- child 2 ---
H A Dbug36756.phpt10 $dom->loadXML('<root><child/></root>');
18 $dom->loadXML('<root><child/></root>');
20 $node = $xpath->query('//child')->item(0);
30 child
H A Dbug38949.phpt16 $child = $root->firstChild->nextSibling;
17 echo $child->getAttribute("xmlns")."\n";
18 echo $child->getAttribute("xmlns:ns2")."\n";
H A Ddomxpath.phpt24 $dom->loadXML('<root xmlns="urn::default"><child>myval</child></root>');
32 $nodelist = $xpath->query("//def:child");
37 $count = $xpath->evaluate("count(//def:child)");
/PHP-7.2/ext/tidy/tests/
H A D010.phpt36 ["child"]=>
62 ["child"]=>
85 ["child"]=>
136 ["child"]=>
167 ["child"]=>
193 ["child"]=>
216 ["child"]=>
237 ["child"]=>
267 ["child"]=>
292 ["child"]=>
[all …]
/PHP-7.2/sapi/fpm/fpm/
H A Dfpm_request.h17 void fpm_request_check_timed_out(struct fpm_child_s *child, struct timeval *tv, int terminate_timeo…
18 int fpm_request_is_idle(struct fpm_child_s *child);
20 int fpm_request_last_activity(struct fpm_child_s *child, struct timeval *tv);
/PHP-7.2/ext/simplexml/tests/
H A Dprofile01.phpt9 <child>Hello</child>
13 echo $root->child;
H A Dprofile04.phpt9 <reserved:child>Hello</reserved:child>
13 echo $root->children('reserved-ns')->child;
H A Dprofile05.phpt10 <reserved:child>Hello</reserved:child>
14 echo $root->children('reserved')->child;
H A Dprofile09.phpt10 <reserved:child>Hello</reserved:child>
14 echo $root->child;
H A Dprofile07.phpt10 <child reserved:attribute="Sample" />
14 $rsattr = $root->child->attributes('reserved');
15 $myattr = $root->child->attributes('reserved-ns');
H A Dprofile10.phpt10 <child reserved:attribute="Sample" special:attribute="Test" />
14 $rsattr = $root->child->attributes('reserved-ns');
15 $spattr = $root->child->attributes('special-ns');
/PHP-7.2/Zend/tests/
H A Dbug45862.phpt25 echo "\n From child scope\n";
26 $child = new Child();
27 $child->test();
38 From child scope
H A Dbug40757.phpt2 Bug #40757 (get_object_vars() get nothing in child class)
17 $child=new Child();
18 print_r($child->getFields(new Base()));
H A Dbug48899.phpt17 $child = new ChildClass();
18 $child->testIsCallable();
19 $child->testIsCallable2();
H A Dbug72177.phpt17 protected $child;
21 $this->child = new Child();
23 $prop = new \ReflectionProperty($this, 'child');
H A Dbug68215.phpt25 function test(&$child, $entry)
29 foreach ($child AS $key => $fruit)
33 $child[$i] = $fruit;
34 unset($child[$key]);
/PHP-7.2/Zend/
H A Dzend_generators.c482 return node->child.array[0].child; in zend_generator_get_child()
486 return node->child.array[x].child; \ in zend_generator_get_child()
504 node = &node->child.array[0].child->node; in zend_generator_search_multi_children_node()
513 node->child.array[node->children].child = child; in zend_generator_add_single_child()
515 zend_hash_index_add_ptr(&node->child.ht, (zend_ulong) leaf, child); in zend_generator_add_single_child()
519 zend_generator *child; in zend_generator_add_single_child() member
526 zend_hash_index_add_ptr(&node->child.ht, (zend_ulong) array[i].leaf, array[i].child); in zend_generator_add_single_child()
528 zend_hash_index_add_ptr(&node->child.ht, (zend_ulong) leaf, child); in zend_generator_add_single_child()
539 zend_generator_add_single_child(dest, child, src->child.array[i].leaf); in zend_generator_merge_child_nodes()
552 zend_generator *leaf = child->node.children ? child->node.ptr.leaf : child; in zend_generator_add_child()
[all …]
H A Dzend_compile.c2835 list->children > 0 && list->child[0] != NULL && list->child[0]->child[1] != NULL; in zend_compile_list_assign()
3568 && args->child[1]->child[0]->kind == ZEND_AST_ZVAL in zend_compile_func_cufa()
3570 && args->child[1]->child[1]->kind == ZEND_AST_ARG_LIST) { in zend_compile_func_cufa()
3572 zend_ast_list *list = zend_ast_get_list(args->child[1]->child[1]); in zend_compile_func_cufa()
3690 zend_ast *name_ast = args->child[2]->child[0]; in zend_compile_func_in_array()
3849 && args->child[0]->child[0]->kind == ZEND_AST_ZVAL in zend_compile_func_array_slice()
3851 && args->child[0]->child[1]->kind == ZEND_AST_ARG_LIST in zend_compile_func_array_slice()
3857 zend_ast_list *list = zend_ast_get_list(args->child[0]->child[1]); in zend_compile_func_array_slice()
8558 child = &ast->child[2 - zend_is_true(zend_ast_get_zval(ast->child[0]))]; in zend_eval_const_expr()
8560 child--; in zend_eval_const_expr()
[all …]
/PHP-7.2/ext/mysqli/tests/
H A Dmysqli_fork.phpt2 Forking a child and using the same connection.
30 printf("[001] Cannot fork child");
34 /* child */
71 sender ENUM('child', 'parent') NOT NULL,
83 printf("[009] Cannot fork child");
87 /* child */
244 child start
245 child array
247 child array
249 child array
[all …]
/PHP-7.2/ext/libxml/tests/
H A Dbug42112.phpt8 <root><child xml:id="id1">baz</child></root>
30 Deleting Node: child

Completed in 44 milliseconds

1234567