/PHP-8.2/ext/dom/tests/ |
H A D | DOM4_ParentNode_prepend.phpt | 2 DOMParentNode::prepend() 16 $element->prepend( 25 $element->prepend( 31 $firstMark->prepend('content');
|
H A D | DOMParentNode_empty_argument.phpt | 17 $dom->documentElement->prepend(...$emptyFragment->childNodes); 21 $dom->documentElement->prepend(); 35 $fragment->prepend(...$emptyFragment->childNodes); 37 $fragment->prepend(); 43 $dom->prepend(...$emptyFragment->childNodes); 45 $dom->prepend();
|
H A D | DOMElement_prepend_hierarchy_test.phpt | 2 DOMElement::prepend() with hierarchy changes and errors 15 $b_hello->prepend($b_world); 22 $b_hello->prepend($b_world->firstChild); 29 $b_world->firstChild->prepend($b_hello); 36 $b_hello->prepend($b_hello); 47 $b_world->firstChild->prepend($b_world); 58 $dom->firstChild->firstChild->prepend($dom2->firstChild);
|
H A D | gh16039.phpt | 11 $element->prepend('x', new DOMEntity); 18 $element->prepend('x', new DOMEntity);
|
H A D | DOM4_DOMNode_prepend_ns.phpt | 2 DOMNode::prepend() with namespace 17 $root->prepend($item);
|
H A D | gh11906.phpt | 2 GH-11906 (prepend without children after creating fragment results in segfault) 24 $test->prepend($child);
|
H A D | DOM4_ParentNode_append_wrong_document.phpt | 25 $element->prepend($dom2->documentElement->firstChild);
|
H A D | fragments_multiple_nodes_DOMParentNode.phpt | 25 $dom->documentElement->prepend($fragment);
|
H A D | DOMElement_append_hierarchy_test.phpt | 58 $dom->firstChild->firstChild->prepend($dom2->firstChild);
|
/PHP-8.2/Zend/tests/ |
H A D | bug64677.phpt | 6 public function show_output($prepend, $output = '') { 14 function show_outputa($prepend, $output) {
|
/PHP-8.2/sapi/cli/tests/ |
H A D | bug67741_stub.inc | 2 echo "prepend lineno: ", __LINE__, "\n";
|
H A D | bug67741.phpt | 16 prepend lineno: 2
|
/PHP-8.2/tests/lang/ |
H A D | bug32924.phpt | 2 Bug #32924 (prepend does not add file to included files)
|
/PHP-8.2/ext/standard/tests/array/ |
H A D | array_unshift_empty.phpt | 2 Test array_unshift() function : prepend array with empty set
|
/PHP-8.2/ext/dom/tests/gh11830/ |
H A D | type_variation.phpt | 19 $doc->documentElement->firstElementChild->prepend($testElement, 0); 51 DOMElement::prepend(): Argument #2 must be of type DOMNode|string, int given
|
H A D | hierarchy_variation.phpt | 21 $testElement->prepend($alone, $container);
|
H A D | attribute_variation.phpt | 16 $doc->documentElement->firstElementChild->prepend($doc->documentElement->attributes[0]);
|
H A D | document_variation.phpt | 27 $doc->documentElement->firstElementChild->prepend($testElement, $otherElement);
|
/PHP-8.2/ext/spl/tests/ |
H A D | spl_autoload_010.phpt | 2 SPL: spl_autoload() and prepend
|
/PHP-8.2/ext/spl/ |
H A D | php_spl.stub.php | 34 function spl_autoload_register(?callable $callback = null, bool $throw = true, bool $prepend = fals… argument
|
H A D | php_spl_arginfo.h | 32 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, prepend, _IS_BOOL, 0, "false")
|
H A D | php_spl.c | 506 bool prepend = 0; in PHP_FUNCTION() local 515 Z_PARAM_BOOL(prepend) in PHP_FUNCTION() 568 if (prepend && spl_autoload_functions->nNumOfElements > 1) { in PHP_FUNCTION()
|
/PHP-8.2/ext/dom/ |
H A D | php_dom.stub.php | 277 public function prepend(...$nodes): void; function 465 public function prepend(...$nodes): void {} function in DOMDocumentFragment 638 public function prepend(...$nodes): void {} function in DOMElement 805 public function prepend(...$nodes): void {} function in DOMDocument
|
H A D | documentfragment.c | 158 PHP_METHOD(DOMDocumentFragment, prepend) in PHP_METHOD() argument
|
H A D | php_dom_arginfo.h | 529 ZEND_METHOD(DOMDocumentFragment, prepend); 568 ZEND_METHOD(DOMElement, prepend); 618 ZEND_METHOD(DOMDocument, prepend); 671 …ZEND_ABSTRACT_ME_WITH_FLAGS(DOMParentNode, prepend, arginfo_class_DOMParentNode_prepend, ZEND_ACC_… 729 ZEND_ME(DOMDocumentFragment, prepend, arginfo_class_DOMDocumentFragment_prepend, ZEND_ACC_PUBLIC) 788 ZEND_ME(DOMElement, prepend, arginfo_class_DOMElement_prepend, ZEND_ACC_PUBLIC) 843 ZEND_ME(DOMDocument, prepend, arginfo_class_DOMDocument_prepend, ZEND_ACC_PUBLIC)
|