Home
last modified time | relevance | path

Searched refs:child (Results 151 – 175 of 312) sorted by relevance

12345678910>>...13

/php-src/Zend/
H A Dzend_generators.c179 node->child.single = NULL; in zend_generator_remove_child()
181 HashTable *ht = node->child.ht; in zend_generator_remove_child()
186 node->child.single = other_child; in zend_generator_remove_child()
241 zend_generator *child; in check_node_running_in_fiber() local
242 ZEND_HASH_FOREACH_PTR(generator->node.child.ht, child) { in check_node_running_in_fiber()
391 efree(generator->node.child.ht); in zend_generator_free_storage()
543 node->child.single = child; in zend_generator_add_child()
549 (zend_ulong) node->child.single, node->child.single); in zend_generator_add_child()
550 node->child.ht = ht; in zend_generator_add_child()
553 zend_hash_index_add_new_ptr(node->child.ht, (zend_ulong) child, child); in zend_generator_add_child()
[all …]
H A Dzend_ast.h190 zend_ast *child[1]; /* Array of children (using struct hack) */ member
199 zend_ast *child[1]; member
218 zend_ast *child[5]; member
244 ZEND_API zend_ast * ZEND_FASTCALL zend_ast_create_1(zend_ast_kind kind, zend_ast *child);
260 …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
261 zend_ast *ast = zend_ast_create_1(kind, child); in zend_ast_create_ex_1()
287 ZEND_API zend_ast * ZEND_FASTCALL zend_ast_create_list_1(zend_ast_kind kind, zend_ast *child);
326 return XtOffsetOf(zend_ast, child) + (sizeof(zend_ast *) * children); in zend_ast_size()
387 if (list->children && list->child[list->children - 1] == NULL) { in zend_ast_list_rtrim()
H A Dzend_inheritance.c1050 zend_error_at(E_COMPILE_ERROR, func_filename(child), func_lineno(child), in emit_incompatible_method_error()
1061 zend_error_at(E_DEPRECATED, func_filename(child), func_lineno(child), in emit_incompatible_method_error()
1071 zend_error_at(E_COMPILE_ERROR, func_filename(child), func_lineno(child), in emit_incompatible_method_error()
1137 zend_error_at_noreturn(E_COMPILE_ERROR, func_filename(child), func_lineno(child), in do_inheritance_check_on_method()
1167 zend_error_at_noreturn(E_COMPILE_ERROR, func_filename(child), func_lineno(child), in do_inheritance_check_on_method()
1202 zend_error_at_noreturn(E_COMPILE_ERROR, func_filename(child), func_lineno(child), in do_inheritance_check_on_method()
1230 if (child) { in do_inherit_method()
1357 if (child in inherit_property_hook()
1367 if (!child) { in inherit_property_hook()
1400 child, child->common.scope, parent, parent->common.scope, ce, /* child */ NULL, in inherit_property_hook()
[all …]
/php-src/ext/dom/
H A Dhtml5_serializer.c208 for (xmlNodePtr child = attr->children; child != NULL; child = child->next) { in dom_html5_serialize_element_start() local
209 if (child->type == XML_TEXT_NODE) { in dom_html5_serialize_element_start()
210 if (child->content != NULL) { in dom_html5_serialize_element_start()
211 TRY(dom_html5_escape_string(ctx, (const char *) child->content, true)); in dom_html5_serialize_element_start()
213 } else if (child->type == XML_ENTITY_REF_NODE) { in dom_html5_serialize_element_start()
215 TRY(dom_html5_escape_string(ctx, (const char *) child->name, true)); in dom_html5_serialize_element_start()
H A Dinner_html_mixin.c92 xmlNodePtr child = node->children; in dom_element_inner_html_read() local
94 while (child != NULL && status == 0) { in dom_element_inner_html_read()
95 status = dom_xml_serialize(ctxt, out, child, false, true, private_data); in dom_element_inner_html_read()
96 child = child->next; in dom_element_inner_html_read()
322 xmlNodePtr child = document_element->children; in dom_xml_fragment_parsing_algorithm() local
326 xmlAddChildList(fragment, child); in dom_xml_fragment_parsing_algorithm()
/php-src/ext/intl/resourcebundle/
H A Dresourcebundle_class.c48 if (rb->child) { in ResourceBundle_object_free()
49 ures_close( rb->child ); in ResourceBundle_object_free()
68 rb->child = NULL; in ResourceBundle_object_create()
196 rb->child = ures_getByKey(rb->me, key, rb->child, &INTL_DATA_ERROR_CODE(rb) ); in resource_bundle_array_fetch()
207 rb->child = ures_getByIndex(rb->me, index, rb->child, &INTL_DATA_ERROR_CODE(rb)); in resource_bundle_array_fetch()
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-src/ext/simplexml/tests/
H A DgetDocNamespaces_no_internal_declaration.phpt11 <child xmlns="urn:a">
15 </child>
/php-src/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
H A Dgh14702.phpt11 <child/>
27 $toReplace = $xpath->query('//child')->item(0);
/php-src/ext/dom/tests/modern/common/
H A Dtemplate_participation.phpt21 echo "First child of template: ";
25 echo "First child of template after appending: ";
57 First child of template: NULL
58 First child of template after appending: string(9) "INVISIBLE"
/php-src/ext/dom/tests/modern/spec/
H A DNode_isEqualNode_02.phpt17 $e2->setAttributeNodeNS($child = $dom->createAttributeNS("http://example.com", "foo:bar"));
18 $e2->removeAttributeNode($child);
/php-src/Zend/tests/type_declarations/intersection_types/redundant_types/
H A Dinheritence.phpt2 Intersection with child class
/php-src/Zend/tests/asymmetric_visibility/
H A Dprivate.phpt47 $child = new FooChild();
49 $child->modifyBar('baz');
/php-src/ext/opcache/jit/ir/
H A Dir_ra.c505 ir_ref *p, child; in ir_add_fusion_ranges() local
544 child = *p; in ir_add_fusion_ranges()
545 if (child > 0) { in ir_add_fusion_ranges()
867 uint32_t child; in ir_compute_live_ranges() local
879 child = b; in ir_compute_live_ranges()
892 while (child) { in ir_compute_live_ranges()
1161 ir_ref *p, child; in ir_add_fusion_ranges() local
1202 child = *p; in ir_add_fusion_ranges()
1556 child = child->next; in ir_ivals_inside()
1557 } while (child); in ir_ivals_inside()
[all …]
/php-src/Zend/tests/type_declarations/dnf_types/redundant_types/
H A Dinheritence.phpt2 Intersection with child class
/php-src/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-src/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-src/ext/bcmath/tests/number/
H A Dclass_extends_error.phpt10 $child = new Child(1);
/php-src/ext/standard/
H A Dproc_open.h38 php_process_id_t child; member
/php-src/ext/dom/tests/modern/token_list/
H A Dcount.phpt8 $dom = DOM\XMLDocument::createFromString('<root class="a b c"><child/></root>');
H A Ddebug.phpt8 $dom = DOM\XMLDocument::createFromString('<root class="a b c"><child/></root>');
/php-src/ext/tidy/tests/
H A D036.phpt60 $node->child = [];
75 Cannot modify readonly property tidyNode::$child

Completed in 56 milliseconds

12345678910>>...13