Home
last modified time | relevance | path

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

1234567

/PHP-7.4/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.4/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.4/ext/dom/
H A Dnode.c967 if (child->doc != parentp->doc && child->doc != NULL) { in PHP_FUNCTION()
972 if (child->type == XML_DOCUMENT_FRAG_NODE && child->children == NULL) { in PHP_FUNCTION()
998 new_child = child; in PHP_FUNCTION()
1018 lastattr = xmlHasNsProp(refp->parent, child->name, child->ns->href); in PHP_FUNCTION()
1044 new_child = child; in PHP_FUNCTION()
1060 lastattr = xmlHasNsProp(parentp, child->name, child->ns->href); in PHP_FUNCTION()
1268 if (!(child->doc == NULL || child->doc == nodep->doc)) { in PHP_FUNCTION()
1273 if (child->type == XML_DOCUMENT_FRAG_NODE && child->children == NULL) { in PHP_FUNCTION()
1284 xmlUnlinkNode(child); in PHP_FUNCTION()
1292 new_child = child; in PHP_FUNCTION()
[all …]
/PHP-7.4/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 Dbug75451.phpt10 $dom->loadXML('<root><child/></root>');
12 foreach($xpath->query('/root/noexist') as $child) {
13 var_dump($child);
H A Dbug38949.phpt16 $child = $root->firstChild->nextSibling;
17 echo $child->getAttribute("xmlns")."\n";
18 echo $child->getAttribute("xmlns:ns2")."\n";
H A Dbug36756.phpt10 $dom->loadXML('<root><child/></root>');
18 $dom->loadXML('<root><child/></root>');
20 $node = $xpath->query('//child')->item(0);
30 child
/PHP-7.4/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 …]
H A Dbug77040.phpt11 $p = $tidy->body()->child[0];
14 $text = $p->child[0];
17 $cdata = $tidy->body()->child[1]->child[0];
/PHP-7.4/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');
/PHP-7.4/sapi/fpm/fpm/
H A Dfpm_request.h16 void fpm_request_check_timed_out(struct fpm_child_s *child, struct timeval *tv, int terminate_timeo…
17 int fpm_request_is_idle(struct fpm_child_s *child);
19 int fpm_request_last_activity(struct fpm_child_s *child, struct timeval *tv);
H A Dfpm_scoreboard.c190 struct fpm_worker_pool_s *wp = child->wp; in fpm_scoreboard_proc_get_from_child()
193 int child_index = child->scoreboard_i; in fpm_scoreboard_proc_get_from_child()
269 fpm_scoreboard = child->wp->scoreboard; in fpm_scoreboard_child_use()
270 fpm_scoreboard_i = child->scoreboard_i; in fpm_scoreboard_child_use()
271 proc = fpm_scoreboard_proc_get_from_child(child); in fpm_scoreboard_child_use()
280 void fpm_scoreboard_proc_free(struct fpm_child_s *child) /* {{{ */ in fpm_scoreboard_proc_free() argument
282 struct fpm_worker_pool_s *wp = child->wp; in fpm_scoreboard_proc_free()
284 int child_index = child->scoreboard_i; in fpm_scoreboard_proc_free()
303 int fpm_scoreboard_proc_alloc(struct fpm_child_s *child) /* {{{ */ in fpm_scoreboard_proc_alloc() argument
306 struct fpm_worker_pool_s *wp = child->wp; in fpm_scoreboard_proc_alloc()
[all …]
/PHP-7.4/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');
/PHP-7.4/sapi/cli/tests/
H A Dsapi_windows_set_ctrl_handler.phpt33 die("Failed to start child. ");
37 echo "Started child $child_pid\n";
45 echo "Sending ", get_evt_name($evt), " to child $child_pid\n";
48 …echo ($ret ? "Successfully" : "Unsuccessfuly"), " sent ", get_evt_name($evt), " to child $child_pi…
81 Started child %d
84 Sending CTRL+C to child %d
85 Successfully sent CTRL+C to child %d
/PHP-7.4/Zend/
H A Dzend_compile.c2628 list->children > 0 && list->child[0] != NULL && list->child[0]->child[1] != NULL; in zend_compile_list_assign()
3427 && args->child[1]->child[0]->kind == ZEND_AST_ZVAL in zend_compile_func_cufa()
3429 && args->child[1]->child[1]->kind == ZEND_AST_ARG_LIST) { in zend_compile_func_cufa()
3431 zend_ast_list *list = zend_ast_get_list(args->child[1]->child[1]); in zend_compile_func_cufa()
3548 zend_ast *name_ast = args->child[2]->child[0]; in zend_compile_func_in_array()
3725 && args->child[0]->child[0]->kind == ZEND_AST_ZVAL in zend_compile_func_array_slice()
3727 && args->child[0]->child[1]->kind == ZEND_AST_ARG_LIST in zend_compile_func_array_slice()
3733 zend_ast_list *list = zend_ast_get_list(args->child[0]->child[1]); in zend_compile_func_array_slice()
8905 child = &ast->child[2 - zend_is_true(zend_ast_get_zval(ast->child[0]))]; in zend_eval_const_expr()
8907 child--; in zend_eval_const_expr()
[all …]
/PHP-7.4/ext/pcre/tests/
H A Dbug78272.phpt2 Bug #78272: calling preg_match() before pcntl_fork() will freeze child process
16 print "End child\n";
30 End child

Completed in 76 milliseconds

1234567