/php-src/ext/dom/tests/ |
H A D | gh12870.inc | 3 function test(?string $uri, string $qualifiedName) { 5 echo "--- Testing $uri_readable, \"$qualifiedName\" ---\n"; 9 $attr = $d->createAttributeNS($uri, $qualifiedName); 20 $parts = explode(':', $qualifiedName);
|
H A D | gh16465.phpt | 27 DOMElement::getElementsByTagName(): Argument #1 ($qualifiedName) must not contain any null bytes
|
H A D | dom_create_element.phpt | 213 /* the qualifiedName has a prefix and the namespaceURI is null */ 224 /* the qualifiedName has a prefix that is "xml" and the namespaceURI 260 /* the qualifiedName or its prefix is "xmlns" and the namespaceURI is 298 qualifiedName nor its prefix is "xmlns". */
|
/php-src/ext/dom/ |
H A D | php_dom.stub.php | 772 public function getAttribute(string $qualifiedName): string {} argument 780 public function getAttributeNode(string $qualifiedName) {} argument 792 public function hasAttribute(string $qualifiedName): bool {} argument 798 public function removeAttribute(string $qualifiedName): bool {} argument 807 public function setAttribute(string $qualifiedName, string $value) {} argument 1114 public function getNamedItem(string $qualifiedName): ?DOMNode {} argument 1503 public function getNamedItem(string $qualifiedName): ?Attr {} argument 1604 public function getAttribute(string $qualifiedName): ?string {} argument 1611 public function removeAttribute(string $qualifiedName): void {} argument 1617 public function hasAttribute(string $qualifiedName): bool {} argument [all …]
|
H A D | php_dom_arginfo.h | 137 ZEND_ARG_TYPE_INFO(0, qualifiedName, IS_STRING, 0) 211 ZEND_ARG_TYPE_INFO(0, qualifiedName, IS_STRING, 0) 217 ZEND_ARG_TYPE_INFO(0, qualifiedName, IS_STRING, 0) 228 ZEND_ARG_TYPE_INFO(0, qualifiedName, IS_STRING, 0) 237 ZEND_ARG_TYPE_INFO(0, qualifiedName, IS_STRING, 0) 246 ZEND_ARG_TYPE_INFO(0, qualifiedName, IS_STRING, 0) 266 ZEND_ARG_TYPE_INFO(0, qualifiedName, IS_STRING, 0) 272 ZEND_ARG_TYPE_INFO(0, qualifiedName, IS_STRING, 0) 281 ZEND_ARG_TYPE_INFO(0, qualifiedName, IS_STRING, 0) 287 ZEND_ARG_TYPE_INFO(0, qualifiedName, IS_STRING, 0) [all …]
|
/php-src/ext/simplexml/ |
H A D | simplexml.stub.php | 44 …public function addChild(string $qualifiedName, ?string $value = null, ?string $namespace = null):… argument 47 …public function addAttribute(string $qualifiedName, string $value, ?string $namespace = null): voi… argument
|
H A D | simplexml_arginfo.h | 65 ZEND_ARG_TYPE_INFO(0, qualifiedName, IS_STRING, 0) 71 ZEND_ARG_TYPE_INFO(0, qualifiedName, IS_STRING, 0)
|
/php-src/ext/dom/tests/modern/spec/ |
H A D | Document_createElementNS.phpt | 29 function testError($dom, $namespaceURI, $qualifiedName) 32 echo "($ns_readable, \"$qualifiedName\"): "; 34 $dom->createElementNS($namespaceURI, $qualifiedName);
|
/php-src/ext/dom/tests/modern/extensions/ |
H A D | node_renaming.phpt | 14 function test($target, $namespaceURI, $qualifiedName) { 16 $qualifiedNamePretty = json_encode($qualifiedName); 18 $target->rename($namespaceURI, $qualifiedName);
|
/php-src/ext/xmlwriter/ |
H A D | php_xmlwriter.stub.php | 61 function xmlwriter_start_dtd(XMLWriter $writer, string $qualifiedName, ?string $publicId = null, ?s… argument 67 function xmlwriter_start_dtd_element(XMLWriter $writer, string $qualifiedName): bool {} argument 272 …public function startDtd(string $qualifiedName, ?string $publicId = null, ?string $systemId = null… argument 290 public function startDtdElement(string $qualifiedName): bool {} argument
|
H A D | php_xmlwriter_arginfo.h | 116 ZEND_ARG_TYPE_INFO(0, qualifiedName, IS_STRING, 0) 133 ZEND_ARG_TYPE_INFO(0, qualifiedName, IS_STRING, 0) 286 ZEND_ARG_TYPE_INFO(0, qualifiedName, IS_STRING, 0) 301 ZEND_ARG_TYPE_INFO(0, qualifiedName, IS_STRING, 0)
|
/php-src/ext/simplexml/tests/ |
H A D | SimpleXMLElement_addAttribute_required_attribute_name.phpt | 21 SimpleXMLElement::addAttribute(): Argument #1 ($qualifiedName) must not be empty
|
/php-src/ext/dom/tests/delayed_freeing/ |
H A D | direct_construction.phpt | 60 $test = new DOMElement("qualifiedName", "test");
|