Home
last modified time | relevance | path

Searched refs:namespace (Results 26 – 50 of 470) sorted by relevance

12345678910>>...19

/php-src/Zend/tests/grammar/
H A Dregression_011.phpt2 Testing instantiation using namespace:: prefix
6 namespace foo;
13 var_dump(new namespace\baz);
/php-src/ext/dom/tests/
H A Dgh12870_b.phpt13 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 Dgh12616_3.phpt2 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 Dbug80927.phpt61 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/enum/
H A Dkeyword-no-bc-break.phpt6 namespace enum {
10 namespace foo {
15 namespace bar {
20 namespace {
/php-src/ext/dom/tests/modern/spec/
H A Dbug81468.phpt2 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 DElement_getAttribute.phpt15 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 DElement_getAttributeNode.phpt15 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 DElement_hasAttribute.phpt15 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 DElement_getAttributeNS.phpt11 echo "--- After parsing, i.e. without namespace ---\n";
27 echo "--- Get after creating without namespace ---\n";
34 echo "--- Get after creating with namespace ---\n";
43 --- After parsing, i.e. without namespace ---
54 --- Get after creating without namespace ---
57 --- Get after creating with namespace ---
/php-src/Zend/tests/use_function/
H A Dignore_constants.phpt6 namespace foo {
10 namespace {
14 namespace {
H A Dshadow_global.phpt6 namespace {
11 namespace {
15 namespace {
/php-src/Zend/tests/
H A Dbug43343.phpt5 namespace Foo;
8 var_dump(new namespace::$foo);
11 Parse error: syntax error, unexpected token "namespace", expecting ":" in %s on line %d
H A Dconstants_003.phpt2 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 Dbug43344_6.phpt2 Bug #43344.6 (Wrong error message for undefined namespace constant)
5 namespace Foo;
6 echo namespace\bar."\n";
H A Dname_collision_07.phpt2 Class declaration colliding with import (in namespace)
6 namespace Foo {
10 namespace Bazzle {
H A Dname_collision_08.phpt2 Function declaration colliding with import (in namespace)
6 namespace Foo {
10 namespace Bazzle {
H A Dname_collision_09.phpt2 Class declaration colliding with import (in namespace)
6 namespace Foo {
10 namespace Bazzle {
H A Dns_trailing_comma_02.phpt5 namespace Foo {
9 namespace Bar {
17 namespace Baz {
25 namespace {
H A Dns_077_4.phpt2 077: Unknown compile-time constants in namespace
5 namespace foo;
7 function foo($a = array(0 => namespace\unknown))
/php-src/ext/xmlreader/tests/
H A D015.phpt2 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 D015-move-errors.phpt2 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 Dphp_cxx_compile_stdcxx.m4149 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/Zend/tests/use_const/
H A Dalias.phpt6 namespace foo {
10 namespace bar {
14 namespace {
H A Dshadow_global.phpt6 namespace {
11 namespace {
15 namespace {

Completed in 33 milliseconds

12345678910>>...19