Home
last modified time | relevance | path

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

12345678910

/PHP-8.2/ext/dom/tests/
H A Dgh11906.phpt11 <child/>
16 $child = $container->firstElementChild;
19 $test->append($child);
24 $test->prepend($child);
29 $test->append($child);
38 <foo><child/></foo>
45 <foo><child/></foo>
H A DDOMChildNode_methods_without_parent.phpt11 <child/>
16 $child = $container->firstElementChild;
21 $test->$method($child);
30 <child/>
36 <child/>
42 <child/>
H A DDOMNode_replaceChild_basic.phpt2 Replacing a child node
14 // Replaces the child node oldChild with newChild in the list of children, and
19 echo "New child replaces old child:\n" . $document->saveXML();
20 echo "Old child is returned:\n" . $old_child->tagName . "\n";
25 echo "Existing child is removed from tree:\n" . $document->saveXML();
34 New child replaces old child:
37 Old child is returned:
39 Existing child is removed from tree:
H A DDOMNode_normalize_basic.phpt34 echo "Number of child nodes of title = ";
41 echo "Number of child nodes of title after adding second title = ";
47 echo "Number of child nodes of title after normalizing author = ";
54 echo "Number of child nodes of title after normalizing title = ";
59 Number of child nodes of title = int(1)
60 Number of child nodes of title after adding second title = int(2)
61 Number of child nodes of title after normalizing author = int(2)
62 Number of child nodes of title after normalizing title = int(1)
H A Dxpath_context_node.phpt10 <child>
12 </child>
13 <child>
16 </child>
H A Ddom_comment_basic.phpt22 echo "--- child $index ---\n";
30 --- child 0 ---
34 --- child 1 ---
37 --- child 2 ---
H A Dbug75451.phpt8 $dom->loadXML('<root><child/></root>');
10 foreach($xpath->query('/root/noexist') as $child) {
11 var_dump($child);
H A Dbug36756.phpt10 $dom->loadXML('<root><child/></root>');
17 $dom->loadXML('<root><child/></root>');
19 $node = $xpath->query('//child')->item(0);
29 child
/PHP-8.2/ext/intl/resourcebundle/
H A Dresourcebundle.c36 restype = ures_getType( source->child ); in resourcebundle_extract_value()
40 ufield = ures_getString( source->child, &ilen, &INTL_DATA_ERROR_CODE(source) ); in resourcebundle_extract_value()
46 bfield = ures_getBinary( source->child, &ilen, &INTL_DATA_ERROR_CODE(source) ); in resourcebundle_extract_value()
52 lfield = ures_getInt( source->child, &INTL_DATA_ERROR_CODE(source) ); in resourcebundle_extract_value()
58 vfield = ures_getIntVector( source->child, &ilen, &INTL_DATA_ERROR_CODE(source) ); in resourcebundle_extract_value()
70 newrb->me = source->child; in resourcebundle_extract_value()
71 source->child = NULL; in resourcebundle_extract_value()
/PHP-8.2/ext/tidy/tests/
H A D012.phpt55 ["child"]=>
76 ["child"]=>
100 ["child"]=>
128 ["child"]=>
148 ["child"]=>
279 ["child"]=>
322 ["child"]=>
342 ["child"]=>
428 ["child"]=>
448 ["child"]=>
[all …]
H A D010.phpt38 ["child"]=>
64 ["child"]=>
87 ["child"]=>
138 ["child"]=>
169 ["child"]=>
195 ["child"]=>
218 ["child"]=>
239 ["child"]=>
269 ["child"]=>
294 ["child"]=>
[all …]
H A Dbug77040.phpt9 $p = $tidy->body()->child[0];
12 $text = $p->child[0];
15 $cdata = $tidy->body()->child[1]->child[0];
/PHP-8.2/ext/dom/tests/delayed_freeing/
H A Dnamespace_definition_crash_in_attribute.phpt9 $child = $doc->documentElement->appendChild($doc->createElementNS('some:ns', 'child'));
10 $child_attr1 = $child->appendChild($doc->createAttributeNS('some:ns2', 'hello'));
12 $child_attr2 = $child->appendChild($doc->createAttribute('hello2'));
14 $attr3 = $child->appendChild($doc->createElementNS('some:ns', 'childcontainer'))
19 $child->remove();
22 unset($child);
42 …ns:default1="some:ns"><child xmlns="some:ns" default:hello="hello content 2" hello2=""><childconta…
/PHP-8.2/ext/standard/tests/array/
H A Darray_map_object3.phpt7 * 1) child class method using parent object
8 * 2) parent class method using child object
9 * 3) child class method using parent class
10 * 4) parent class method using child class
45 echo "-- accessing parent method from child class --\n";
48 echo "-- accessing child method from parent class --\n";
55 echo "-- accessing parent method using child class object --\n";
69 -- accessing parent method from child class --
78 -- accessing child method from parent class --
80 -- accessing parent method using child class object --
[all …]
/PHP-8.2/sapi/fpm/fpm/
H A Dfpm_stdio.h14 int fpm_stdio_prepare_pipes(struct fpm_child_s *child);
15 void fpm_stdio_child_use_pipes(struct fpm_child_s *child);
16 int fpm_stdio_parent_use_pipes(struct fpm_child_s *child);
17 int fpm_stdio_discard_pipes(struct fpm_child_s *child);
H A Dfpm_request.h22 void fpm_request_check_timed_out(struct fpm_child_s *child, struct timeval *tv, int terminate_timeo…
23 int fpm_request_is_idle(struct fpm_child_s *child);
25 int fpm_request_last_activity(struct fpm_child_s *child, struct timeval *tv);
/PHP-8.2/ext/soap/tests/interop/Round3/GroupE/
H A Dr3_groupE_list_003w.phpt10 function __construct(public $varString, public $varInt, public $child) {}
22child xsi:type="ns2:List"><varInt xsi:type="xsd:int">2</varInt><varString xsi:type="xsd:string">ar…
24child xsi:type="ns2:List"><varInt xsi:type="xsd:int">2</varInt><varString xsi:type="xsd:string">ar…
30 ["child"]=>
36 ["child"]=>
42 ["child"]=>
/PHP-8.2/Zend/tests/
H A Ddynamic_class_const_fetch_cache_slot.phpt12 public const BAZ = 'baz child';
21 public const BAZ = 'baz 2 child';
48 baz child
49 baz child
53 baz 2 child
54 baz 2 child
H A Dbug45862.phpt25 echo "\n From child scope\n";
26 $child = new Child();
27 $child->test();
38 From child scope
/PHP-8.2/ext/dom/
H A Dnode.c914 if (child->doc != parentp->doc && child->doc != NULL) { in PHP_METHOD()
919 if (child->type == XML_DOCUMENT_FRAG_NODE && child->children == NULL) { in PHP_METHOD()
948 new_child = child; in PHP_METHOD()
968 lastattr = xmlHasNsProp(refp->parent, child->name, child->ns->href); in PHP_METHOD()
1002 new_child = child; in PHP_METHOD()
1018 lastattr = xmlHasNsProp(parentp, child->name, child->ns->href); in PHP_METHOD()
1176 xmlUnlinkNode(child); in PHP_METHOD()
1218 if (!(child->doc == NULL || child->doc == nodep->doc)) { in PHP_METHOD()
1223 if (child->type == XML_DOCUMENT_FRAG_NODE && child->children == NULL) { in PHP_METHOD()
1243 new_child = child; in PHP_METHOD()
[all …]
/PHP-8.2/ext/simplexml/tests/
H A DSimpleXMLElement_asXML_fragment_filename.phpt12 <child id="foo">bar</child>
28 <child id="foo">bar</child>
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;
/PHP-8.2/ext/opcache/jit/ir/
H A Dir_disasm.c46 p->child[1] = r->child[0]; in ir_syms_rotateleft()
47 if (r->child[0]) { in ir_syms_rotateleft()
48 r->child[0]->parent = p; in ir_syms_rotateleft()
54 p->parent->child[0] = r; in ir_syms_rotateleft()
58 r->child[0] = p; in ir_syms_rotateleft()
65 p->child[0] = l->child[1]; in ir_syms_rotateright()
66 if (l->child[1]) { in ir_syms_rotateright()
77 l->child[1] = p; in ir_syms_rotateright()
95 sym->parent = sym->child[0] = sym->child[1] = NULL; in ir_disasm_add_symbol()
175 if (n->child[0]) { in ir_disasm_destroy_symbols()
[all …]
/PHP-8.2/ext/dom/lexbor/lexbor/selectors/
H A Dselectors.c499 if (child == NULL) { in lxb_selectors_next()
505 chld_root = child; in lxb_selectors_next()
527 child = child->next; in lxb_selectors_next()
553 if (child == NULL) { in lxb_selectors_current()
559 chld_root = child; in lxb_selectors_current()
581 child = child->next; in lxb_selectors_current()
1418 entry->child = lxb_selectors_next(selectors, node, entry->child, in lxb_selectors_pseudo_class_function()
1431 entry->child = lxb_selectors_next(selectors, node, entry->child, in lxb_selectors_pseudo_class_function()
1441 entry->child = lxb_selectors_next(selectors, node, entry->child, in lxb_selectors_pseudo_class_function()
1454 entry->child = lxb_selectors_next(selectors, node, entry->child, in lxb_selectors_pseudo_class_function()
[all …]

Completed in 64 milliseconds

12345678910