/php-src/ext/dom/tests/ |
H A D | DOMDocument_importNode_attribute_prefix_conflict.phpt | 8 echo "--- Non-default namespace test case without a default namespace in the destination ---\n"; 21 echo "--- Non-default namespace test case with a default namespace in the destination ---\n"; 36 echo "--- Default namespace test case ---\n"; 38 // We don't expect the namespace to be imported because default namespaces on the same element don'… 53 --- Non-default namespace test case without a default namespace in the destination --- 58 --- Non-default namespace test case with a default namespace in the destination --- 67 --- Default namespace test case ---
|
H A D | gh12870_b.phpt | 13 test('http://www.w3.org/XML/1998/namespace', 'xml'); 14 test('http://www.w3.org/XML/1998/namespace', 'bar:xml'); 20 test('http://www.w3.org/XML/1998/namespace', 'xmlns:xml'); 21 test('http://www.w3.org/XML/1998/namespace', ''); 37 --- Testing "http://www.w3.org/XML/1998/namespace", "xml" --- 39 Attr namespaceURI: string(36) "http://www.w3.org/XML/1998/namespace" 46 --- Testing "http://www.w3.org/XML/1998/namespace", "bar:xml" --- 48 Attr namespaceURI: string(36) "http://www.w3.org/XML/1998/namespace" 74 --- Testing "http://www.w3.org/XML/1998/namespace", "xmlns:xml" --- 77 --- Testing "http://www.w3.org/XML/1998/namespace", "" ---
|
H A D | gh12616_3.phpt | 2 GH-12616 (DOM: Removing XMLNS namespace node results in invalid default: prefix) 31 foreach ($xpath->query("/container/child1/namespace::*") as $ns) { 43 foreach ($xpath->query("/container/child2/namespace::*") as $ns) { 65 string(36) "http://www.w3.org/XML/1998/namespace" 73 string(36) "http://www.w3.org/XML/1998/namespace" 88 string(36) "http://www.w3.org/XML/1998/namespace" 96 string(36) "http://www.w3.org/XML/1998/namespace" 110 string(36) "http://www.w3.org/XML/1998/namespace" 118 string(36) "http://www.w3.org/XML/1998/namespace" 133 string(36) "http://www.w3.org/XML/1998/namespace" [all …]
|
H A D | bug80927.phpt | 61 echo "--- Remove namespace declarator for attribute, root ---\n"; 63 echo "--- Remove namespace declarator for attribute, moved root ---\n"; 65 echo "--- Remove namespace declarator for attribute, moved root child ---\n"; 67 echo "--- Remove namespace declarator for element ---\n"; 72 --- Remove namespace declarator for attribute, root --- 76 --- Remove namespace declarator for attribute, moved root --- 80 --- Remove namespace declarator for attribute, moved root child --- 85 --- Remove namespace declarator for element ---
|
/php-src/Zend/tests/grammar/ |
H A D | regression_011.phpt | 2 Testing instantiation using namespace:: prefix 6 namespace foo; 13 var_dump(new namespace\baz);
|
/php-src/Zend/tests/enum/ |
H A D | keyword-no-bc-break.phpt | 6 namespace enum { 10 namespace foo { 15 namespace bar { 20 namespace {
|
/php-src/ext/dom/tests/modern/spec/ |
H A D | bug81468.phpt | 2 Bug #81468 (Inconsistent default namespace inheritance) 12 ->appendChild($dom->createElementNS('some:namespace', 'foo')) 17 $xpath->registerNamespace('n', 'some:namespace'); 27 $xpath->registerNamespace('n', 'some:namespace'); 34 <foo xmlns="some:namespace"><bar xmlns=""/></foo> 38 <foo xmlns="some:namespace"><bar xmlns=""/></foo>
|
H A D | Element_getAttribute.phpt | 15 echo "--- Get after creating without namespace ---\n"; 21 echo "--- Get after creating with namespace ---\n"; 28 echo "--- Get after creating with namespace case sensitive ---\n"; 43 --- Get after creating without namespace --- 45 --- Get after creating with namespace --- 48 --- Get after creating with namespace case sensitive ---
|
H A D | Element_getAttributeNode.phpt | 15 echo "--- Get after creating without namespace ---\n"; 21 echo "--- Get after creating with namespace ---\n"; 28 echo "--- Get after creating with namespace case sensitive ---\n"; 43 --- Get after creating without namespace --- 45 --- Get after creating with namespace --- 48 --- Get after creating with namespace case sensitive ---
|
H A D | Element_hasAttribute.phpt | 15 echo "--- Get after creating without namespace ---\n"; 21 echo "--- Get after creating with namespace ---\n"; 28 echo "--- Get after creating with namespace case sensitive ---\n"; 43 --- Get after creating without namespace --- 45 --- Get after creating with namespace --- 48 --- Get after creating with namespace case sensitive ---
|
/php-src/Zend/tests/use_function/ |
H A D | ignore_constants.phpt | 6 namespace foo { 10 namespace { 14 namespace {
|
H A D | shadow_global.phpt | 6 namespace { 11 namespace { 15 namespace {
|
/php-src/Zend/tests/ |
H A D | bug43343.phpt | 5 namespace Foo; 8 var_dump(new namespace::$foo); 11 Parse error: syntax error, unexpected token "namespace", expecting ":" in %s on line %d
|
H A D | constants_003.phpt | 2 Using namespace constants and constants of global scope 6 namespace foo; 12 var_dump(foo, namespace\foo, \foo\foo, \foo, constant('foo'), constant('foo\foo'));
|
H A D | bug43344_6.phpt | 2 Bug #43344.6 (Wrong error message for undefined namespace constant) 5 namespace Foo; 6 echo namespace\bar."\n";
|
H A D | name_collision_07.phpt | 2 Class declaration colliding with import (in namespace) 6 namespace Foo { 10 namespace Bazzle {
|
H A D | name_collision_08.phpt | 2 Function declaration colliding with import (in namespace) 6 namespace Foo { 10 namespace Bazzle {
|
H A D | name_collision_09.phpt | 2 Class declaration colliding with import (in namespace) 6 namespace Foo { 10 namespace Bazzle {
|
/php-src/ext/xmlreader/tests/ |
H A D | 015.phpt | 2 XMLReader: libxml2 XML Reader, Move cursor to a named attribute within a namespace 11 <books xmlns:ns1="http://www.ns1.namespace.org/" xmlns:ns2="http://www.ns2.namespace.org/"><book ns… 27 $attr = $reader->moveToAttributeNs('idx', 'http://www.ns1.namespace.org/'); 31 $attr = $reader->moveToAttributeNs('idx', 'http://www.ns2.namespace.org/'); 35 $attr = $reader->moveToAttributeNs('isbn', 'http://www.ns2.namespace.org/'); 40 $attr = $reader->moveToAttributeNs('elephpant', 'http://www.ns2.namespace.org/'); 41 …at move should return a result of false, because there is no elephpant attribute (in any namespace)
|
H A D | 015-move-errors.phpt | 2 XMLReader: libxml2 XML Reader, Move cursor to a named attribute within a namespace, with invalid ar… 11 <books xmlns:ns1="http://www.ns1.namespace.org/" xmlns:ns2="http://www.ns2.namespace.org/"><book ns… 26 // Test for missing namespace argument 44 Deprecated: XMLReader::moveToAttributeNs(): Passing null to parameter #2 ($namespace) of type strin… 45 XMLReader::moveToAttributeNs(): Argument #2 ($namespace) must not be empty
|
/php-src/build/ |
H A D | php_cxx_compile_stdcxx.m4 | 149 namespace cxx11 193 namespace test_decltype 248 namespace test_noexcept 322 namespace test_lambdas 416 } // namespace cxx11 440 namespace cxx14 540 } // namespace cxx14 568 namespace cxx17 922 } // namespace cxx17 945 namespace cxx20 [all …]
|
/php-src/ext/xsl/tests/ |
H A D | req30622_errors.phpt | 2 Request #30622 (XSLT: xsltProcessor->setParameter() cannot set namespace URI) - error cases 54 …meter(): Argument #2 ($name) must not use clark notation when argument #1 ($namespace) is not empty 55 XSLTProcessor::setParameter(): Argument #2 ($name) must not be a QName when argument #1 ($namespace… 56 …meter(): Argument #2 ($name) must not use clark notation when argument #1 ($namespace) is not empty 57 XSLTProcessor::getParameter(): Argument #2 ($name) must not be a QName when argument #1 ($namespace… 58 …meter(): Argument #2 ($name) must not use clark notation when argument #1 ($namespace) is not empty 59 …moveParameter(): Argument #2 ($name) must not be a QName when argument #1 ($namespace) is not empty
|
/php-src/Zend/tests/use_const/ |
H A D | alias.phpt | 6 namespace foo { 10 namespace bar { 14 namespace {
|
H A D | shadow_global.phpt | 6 namespace { 11 namespace { 15 namespace {
|
/php-src/Zend/tests/group_use/ |
H A D | ns_trailing_comma_02.phpt | 5 namespace Foo { 9 namespace Bar { 17 namespace Baz { 25 namespace {
|