Home
last modified time | relevance | path

Searched refs:child (Results 101 – 125 of 247) sorted by relevance

12345678910

/PHP-8.2/ext/dom/tests/
H A DDOMDocument_getElementsByTagName_liveness_tree_walk.phpt11 echo "-- On first child, for --\n";
20 echo "-- On first child, foreach --\n";
62 -- On first child, for --
68 -- On first child, foreach --
H A DDOMElement_append_hierarchy_test.phpt18 echo "-- Append hello with world's child --\n";
25 echo "-- Append world's child with hello --\n";
70 -- Append hello with world's child --
73 -- Append world's child with hello --
H A DDOMElement_prepend_hierarchy_test.phpt18 echo "-- Prepend hello with world's child --\n";
25 echo "-- Prepend world's child with hello --\n";
70 -- Prepend hello with world's child --
73 -- Prepend world's child with hello --
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-8.2/ext/standard/tests/streams/
H A Dbug61019.phpt9 0 => array("pipe", "r"), // stdin is a pipe that the child will read from
10 1 => array("pipe", "w"), // stdout is a pipe that the child will write to
11 2 => array("pipe", "w") // stderr is a pipe that the child will write to
/PHP-8.2/ext/soap/tests/interop/Round3/GroupE/
H A Dr3_groupE_list_001w.phpt10 function __construct(public $varString, public $varInt, public $child) {}
22 …ype="xsd:int">1</varInt><varString xsi:type="xsd:string">arg1</varString><child xsi:nil="true" xsi…
24 …ype="xsd:int">1</varInt><varString xsi:type="xsd:string">arg1</varString><child xsi:nil="true" xsi…
30 ["child"]=>
/PHP-8.2/ext/pcntl/tests/
H A Dpcntl_fork_basic.phpt12 echo "*** Test by calling method or function with its expected arguments, first print the child PID…
23 *** Test by calling method or function with its expected arguments, first print the child PID and t…
/PHP-8.2/ext/standard/tests/general_functions/
H A Dgh12655.phpt7 0 => [ "pipe", "r" ], // stdin is a pipe that the child will read from
8 1 => [ "pipe", "w" ], // stdout is a pipe that the child will write to
/PHP-8.2/ext/simplexml/tests/
H A Dbug42259.phpt27 foreach ($rit as $child) {
29 $ancestry = $child->xpath('ancestor-or-self::*');
/PHP-8.2/Zend/
H A Dzend_enum.c539 ast->child[0] = (zend_ast *) p; p += sizeof(zend_ast_zval); in create_enum_case_ast()
540 ast->child[0]->kind = ZEND_AST_ZVAL; in create_enum_case_ast()
541 ast->child[0]->attr = 0; in create_enum_case_ast()
543 ZVAL_STR(zend_ast_get_zval(ast->child[0]), class_name); in create_enum_case_ast()
546 ast->child[1]->kind = ZEND_AST_ZVAL; in create_enum_case_ast()
547 ast->child[1]->attr = 0; in create_enum_case_ast()
549 ZVAL_STR(zend_ast_get_zval(ast->child[1]), case_name); in create_enum_case_ast()
553 ast->child[2]->kind = ZEND_AST_ZVAL; in create_enum_case_ast()
554 ast->child[2]->attr = 0; in create_enum_case_ast()
556 ZVAL_COPY_VALUE(zend_ast_get_zval(ast->child[2]), value); in create_enum_case_ast()
[all …]
H A Dzend_ast.h185 zend_ast *child[1]; /* Array of children (using struct hack) */ member
194 zend_ast *child[1]; member
213 zend_ast *child[5]; member
239 ZEND_API zend_ast * ZEND_FASTCALL zend_ast_create_1(zend_ast_kind kind, zend_ast *child);
250 …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
251 zend_ast *ast = zend_ast_create_1(kind, child); in zend_ast_create_ex_1()
277 ZEND_API zend_ast * ZEND_FASTCALL zend_ast_create_list_1(zend_ast_kind kind, zend_ast *child);
316 return XtOffsetOf(zend_ast, child) + (sizeof(zend_ast *) * children); in zend_ast_size()
377 if (list->children && list->child[list->children - 1] == NULL) { in zend_ast_list_rtrim()
H A Dzend_inheritance.c1035 zend_error_at(E_COMPILE_ERROR, func_filename(child), func_lineno(child), in emit_incompatible_method_error()
1046 zend_error_at(E_DEPRECATED, func_filename(child), func_lineno(child), in emit_incompatible_method_error()
1056 zend_error_at(E_COMPILE_ERROR, func_filename(child), func_lineno(child), in emit_incompatible_method_error()
1108 zend_error_at_noreturn(E_COMPILE_ERROR, func_filename(child), func_lineno(child), in do_inheritance_check_on_method_ex()
1121 zend_error_at_noreturn(E_COMPILE_ERROR, func_filename(child), func_lineno(child), in do_inheritance_check_on_method_ex()
1125 zend_error_at_noreturn(E_COMPILE_ERROR, func_filename(child), func_lineno(child), in do_inheritance_check_on_method_ex()
1136 zend_error_at_noreturn(E_COMPILE_ERROR, func_filename(child), func_lineno(child), in do_inheritance_check_on_method_ex()
1159 if (child->common.scope != ce && child->type == ZEND_USER_FUNCTION) { in do_inheritance_check_on_method_ex()
1180 zend_error_at_noreturn(E_COMPILE_ERROR, func_filename(child), func_lineno(child), in do_inheritance_check_on_method_ex()
1212 if (child) { in do_inherit_method()
[all …]
H A Dzend_generators.c183 node->child.single = NULL; in zend_generator_remove_child()
185 HashTable *ht = node->child.ht; in zend_generator_remove_child()
186 zend_hash_index_del(ht, (zend_ulong) child); in zend_generator_remove_child()
190 node->child.single = other_child; in zend_generator_remove_child()
342 zend_hash_destroy(generator->node.child.ht); in zend_generator_free_storage()
343 efree(generator->node.child.ht); in zend_generator_free_storage()
483 node->child.single = child; in zend_generator_add_child()
489 (zend_ulong) node->child.single, node->child.single); in zend_generator_add_child()
490 node->child.ht = ht; in zend_generator_add_child()
493 zend_hash_index_add_new_ptr(node->child.ht, (zend_ulong) child, child); in zend_generator_add_child()
[all …]
/PHP-8.2/ext/intl/resourcebundle/
H A Dresourcebundle_iterator.c35 rb->child = ures_getByIndex( rb->me, iterator->i, rb->child, &icuerror ); in resourcebundle_iterator_read()
40 iterator->currentkey = estrdup( ures_getKey( rb->child ) ); in resourcebundle_iterator_read()
/PHP-8.2/Zend/tests/type_declarations/intersection_types/redundant_types/
H A Dinheritence.phpt2 Intersection with child class
/PHP-8.2/sapi/fpm/tests/
H A Dbug76601-reload-child-signals.phpt32 * If a child miss SIGQUIT then reload process should stuck
39 …pid 21315, fpm_pctl_kill_all(), line 161: [pool unconfined] sending signal 9 SIGKILL to child 21337
40 …33471] DEBUG: pid 21315, fpm_children_bury(), line 259: [pool unconfined] child 21337 exited on si…
/PHP-8.2/ext/dom/tests/modern/html/interactions/
H A DHTMLDocument_should_retain_properties_and_owner_01.phpt12 $child = $dom->documentElement;
17 $dom = $child->ownerDocument;
H A DHTMLDocument_should_retain_properties_and_owner_02.phpt10 $child = $dom->appendChild($dom->createElement('html'));
17 $dom = $child->ownerDocument;
/PHP-8.2/ext/dom/tests/modern/html/serializer/
H A DHTMLDocument_serialize_ns_imported_03.phpt9 $xml->documentElement->appendChild($xml->createElementNS('some:ns2', 'child'));
35 <child xmlns="some:ns2"/></container>
H A DHTMLDocument_serialize_ns_imported_04.phpt9 $xml->documentElement->appendChild($xml->createElementNS('some:ns2', 'child'));
35 <child xmlns="some:ns2"/></container>
/PHP-8.2/Zend/tests/type_declarations/dnf_types/redundant_types/
H A Dinheritence.phpt2 Intersection with child class
/PHP-8.2/ext/opcache/jit/ir/
H A Dir_cfg.c685 int child = idom_bb->dom_child;
689 child = child_bb->dom_next_child;
690 child_bb = &blocks[child];
770 int child = idom_bb->dom_child; in ir_build_dominators_tree() local
774 child = child_bb->dom_next_child; in ir_build_dominators_tree()
775 child_bb = &blocks[child]; in ir_build_dominators_tree()
824 int child; in ir_find_loops() local
834 for (child = bb->dom_child; child > 0; child = blocks[child].dom_next_child) { in ir_find_loops()
865 int child; in ir_find_loops() local
866 …for (child = blocks[sorted_blocks[i]].dom_child; child > 0; child = blocks[child].dom_next_child) { in ir_find_loops()
[all …]
/PHP-8.2/ext/dom/
H A Dxpath.c55 static void dom_xpath_proxy_factory(xmlNodePtr node, zval *child, dom_object *intern, xmlXPathParse… in dom_xpath_proxy_factory() argument
61 php_dom_create_object(node, child, intern); in dom_xpath_proxy_factory()
328 zval child; in php_xpath_eval() local
339 node = php_dom_create_fake_namespace_decl(nsparent, original, &child, parent_intern); in php_xpath_eval()
341 php_dom_create_object(node, &child, &intern->dom); in php_xpath_eval()
343 add_next_index_zval(&retval, &child); in php_xpath_eval()
/PHP-8.2/ext/standard/
H A Dproc_open.h38 php_process_id_t child; member

Completed in 72 milliseconds

12345678910