Home
last modified time | relevance | path

Searched refs:child (Results 76 – 100 of 160) sorted by relevance

1234567

/PHP-7.4/Zend/
H A Dzend_ast.h165 zend_ast *child[1]; /* Array of children (using struct hack) */ member
174 zend_ast *child[1]; member
194 zend_ast *child[4]; member
220 ZEND_API zend_ast * ZEND_FASTCALL zend_ast_create_1(zend_ast_kind kind, zend_ast *child);
230 …s_inline zend_ast * zend_ast_create_ex_1(zend_ast_kind kind, zend_ast_attr attr, zend_ast *child) { in zend_ast_create_ex_1() argument
231 zend_ast *ast = zend_ast_create_1(kind, child); in zend_ast_create_ex_1()
252 ZEND_API zend_ast * ZEND_FASTCALL zend_ast_create_list_1(zend_ast_kind kind, zend_ast *child);
337 if (list->children && list->child[list->children - 1] == NULL) { in zend_ast_list_rtrim()
H A Dzend_inheritance.c717 (child->common.prototype && in emit_incompatible_method_error_or_warning()
772 child_flags = child->common.fn_flags; in do_inheritance_check_on_method_ex()
782 ZEND_FN_SCOPE_NAME(parent), ZSTR_VAL(child->common.function_name), ZEND_FN_SCOPE_NAME(child)); in do_inheritance_check_on_method_ex()
786 ZEND_FN_SCOPE_NAME(parent), ZSTR_VAL(child->common.function_name), ZEND_FN_SCOPE_NAME(child)); in do_inheritance_check_on_method_ex()
797 ZEND_FN_SCOPE_NAME(parent), ZSTR_VAL(child->common.function_name), ZEND_FN_SCOPE_NAME(child)); in do_inheritance_check_on_method_ex()
822 if (child->common.scope != ce in do_inheritance_check_on_method_ex()
835 child->common.prototype = proto; in do_inheritance_check_on_method_ex()
873 if (child) { in do_inherit_method()
943 ZSTR_VAL(child->ce->name), in emit_incompatible_property_error()
957 if (UNEXPECTED(child)) { in do_inherit_property()
[all …]
H A Dzend_generators.h46 zend_generator *child; member
48 } child; member
/PHP-7.4/ext/intl/resourcebundle/
H A Dresourcebundle_class.c49 if (rb->child) { in ResourceBundle_object_free()
50 ures_close( rb->child ); in ResourceBundle_object_free()
69 rb->child = NULL; in ResourceBundle_object_create()
193 rb->child = ures_getByIndex( rb->me, meindex, rb->child, &INTL_DATA_ERROR_CODE(rb) ); in resourcebundle_array_fetch()
196 rb->child = ures_getByKey(rb->me, mekey, rb->child, &INTL_DATA_ERROR_CODE(rb) ); in resourcebundle_array_fetch()
H A Dresourcebundle_iterator.c37 rb->child = ures_getByIndex( rb->me, iterator->i, rb->child, &icuerror ); in resourcebundle_iterator_read()
42 iterator->currentkey = estrdup( ures_getKey( rb->child ) ); in resourcebundle_iterator_read()
/PHP-7.4/ext/dom/tests/
H A Dcanonicalization.phpt24 /* inclusive/without comments first child element of doc element is context. */
27 /* exclusive/without comments first child element of doc element is context. */
30 /* inclusive/with comments first child element of doc element is context. */
33 /* exclusive/with comments first child element of doc element is context. */
39 /* exclusive/without comments first child element of doc element is context.
47 /* exclusive/without comments first child element of doc element is context.
H A DDOMNode_insertBefore_error5.phpt5 DOM_NOT_FOUND is raised if refnode is not a child
6 This test checks the error message is raised when the refnode is a descendant but not a child
/PHP-7.4/ext/simplexml/tests/
H A Dbug42259.phpt30 foreach ($rit as $child) {
32 $ancestry = $child->xpath('ancestor-or-self::*');
H A Dbug41947.phpt8 $grandchild = $xml->addChild('child', null, 'http://myns')->addChild('grandchild', 'hello', '');
/PHP-7.4/ext/simplexml/
H A Dsxe.c127 php_sxe_object *child; in PHP_METHOD() local
137 child = Z_SXEOBJ_P(&sxe->iter.data); in PHP_METHOD()
139 GET_NODE(child, node); in PHP_METHOD()
/PHP-7.4/ext/standard/
H A Dproc_open.h39 php_process_id_t child; member
/PHP-7.4/ext/spl/tests/
H A DSplFileInfo_setFileClass_basic.phpt2 SplFileInfo::setFileClass() expects SplFileObject or child class
H A DSplFileInfo_setInfoClass_basic.phpt2 SplFileInfo::setInfoClass() expects SplFileInfo or child class
H A Dbug65328.phpt146 * @param Node $child
148 public function addChild(Node $child)
150 $child->setParent($this);
151 $this->children[] = $child;
/PHP-7.4/sapi/fpm/fpm/
H A Dfpm_children.h14 int fpm_children_free(struct fpm_child_s *child);
/PHP-7.4/Zend/tests/
H A Dbug63976.phpt2 Bug #63976 (Parent class incorrectly using child constant in class property)
H A Dbug33277.phpt2 Bug #33277 (private method accessed by child class)
H A Dbug62814.phpt2 Bug #62814: It is possible to stiffen child class members visibility
H A Dbug63816.phpt2 Bug #63816: implementation child interface and after parent cause fatal error
/PHP-7.4/Zend/tests/return_types/
H A D006.phpt2 Return type allowed in child when parent does not have return type
/PHP-7.4/Zend/tests/traits/
H A Dbug76773.phpt2 Bug #76773 (Traits used on the parent are ignored for child classes)
/PHP-7.4/tests/classes/
H A D__call_006.phpt38 echo "\n\n---> Invoke __call via scope resolution operator within child instance.\n";
67 ---> Invoke __call via scope resolution operator within child instance.
H A D__call_007.phpt38 echo "\n\n---> Invoke __call via scope resolution operator within child instance.\n";
68 ---> Invoke __call via scope resolution operator within child instance.
/PHP-7.4/ext/dom/
H A Dphp_dom.c1305 if (parent == NULL || child == NULL || child->doc != parent->doc) { in dom_hierarchy()
1316 if (nodep == child) { in dom_hierarchy()
1382 child = nodep->children; in dom_normalize()
1383 while(child != NULL) { in dom_normalize()
1384 switch (child->type) { in dom_normalize()
1386 nextp = child->next; in dom_normalize()
1401 nextp = child->next; in dom_normalize()
1402 xmlUnlinkNode(child); in dom_normalize()
1404 child = nextp; in dom_normalize()
1409 dom_normalize (child); in dom_normalize()
[all …]
/PHP-7.4/sapi/fpm/tests/
H A Dlogtool.inc8 const P_PREFIX = '\[pool unconfined\] child \d+ said into stderr: ';
9 const P_PREFIX_STDOUT = '\[pool unconfined\] child \d+ said into stdout: ';
462 … '[08-Oct-2017 19:53:50] WARNING: [pool unconfined] child 23183 said into stderr: "' .
464 … '[08-Oct-2017 19:53:50] WARNING: [pool unconfined] child 23183 said into stderr: "' .
466 … '[08-Oct-2017 19:53:50] WARNING: [pool unconfined] child 23183 said into stderr: "' .
477 … '[08-Oct-2017 19:53:50] WARNING: [pool unconfined] child 23183 said into stderr: "' .
479 … '[08-Oct-2017 19:53:50] WARNING: [pool unconfined] child 23183 said into stderr: "' .
481 … '[08-Oct-2017 19:53:50] WARNING: [pool unconfined] child 23183 said into stderr: "' .
483 … '[08-Oct-2017 19:53:50] WARNING: [pool unconfined] child 23183 said into stderr: pe is closed',

Completed in 54 milliseconds

1234567