HomeSort by relevance Sort by last modified time
    Searched full:namespace (Results 301 - 325 of 28094) sorted by null

<<11121314151617181920>>

  /frameworks/base/libs/hwui/
IContextFactory.h 19 namespace android {
20 namespace uirenderer {
22 namespace renderthread {
36 } /* namespace uirenderer */
37 } /* namespace android */
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/
constants.hpp 14 namespace boost {
15 namespace algorithm {
27 } // namespace algorithm
29 // pull the names to the boost namespace
33 } // namespace boost
  /art/runtime/gc/accounting/
remembered_set.h 28 namespace art {
29 namespace gc {
31 namespace collector {
33 } // namespace collector
34 namespace space {
36 } // namespace space
40 namespace accounting {
83 } // namespace accounting
84 } // namespace gc
85 } // namespace ar
    [all...]
  /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
p8.cpp 6 // Redeclarations are okay in a namespace.
7 namespace test0 {
8 namespace ns {
19 namespace ns {
37 namespace test1 {
38 namespace ns {
50 namespace ns {
69 namespace test2 {
86 namespace test3 {
87 namespace N
    [all...]
p11.cpp 3 // C++03 [namespace.udecl]p11: (per DR101)
4 // If a function declaration in namespace scope or block scope has
15 namespace test0 {
16 namespace ns { void foo(); } // expected-note {{target of using declaration}}
21 namespace test1 {
22 namespace ns { void foo(); } // expected-note {{target of using declaration}}
27 namespace test2 {
28 namespace ns { void foo(); } // expected-note 2 {{target of using declaration}}
40 namespace test3 {
41 namespace ns { void foo(); } // expected-note 2 {{target of using declaration}
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/detail/
cv_traits_impl.hpp 23 namespace boost {
24 namespace detail {
27 namespace boost {
28 namespace type_traits {
29 namespace gcc8503 {
72 } // namespace gcc8503
73 } // namespace type_traits
75 namespace detail {
92 } // namespace detail
93 } // namespace boost
    [all...]
  /external/clang/test/SemaCXX/
undefined-internal.cpp 6 namespace test1 {
16 namespace test2 {
17 namespace {
18 void foo(); // expected-warning {{function 'test2::(anonymous namespace)::foo' has internal linkage but is not defined}}
19 extern int var; // expected-warning {{variable 'test2::(anonymous namespace)::var' has internal linkage but is not defined}}
20 template <class T> void bar(); // expected-warning {{function 'test2::(anonymous namespace)::bar<int>' has internal linkage but is not defined}}
29 namespace test3 {
30 namespace {
42 namespace {
49 namespace test4
    [all...]
missing-namespace-qualifier-typo-corrections.cpp 3 namespace fizbin { class Foobar {}; } // expected-note 2 {{'fizbin::Foobar' declared here}} \
7 fizbin::Foobar *my_foo = new fizbin::FooBar; // expected-error{{no type named 'FooBar' in namespace 'fizbin'; did you mean 'Foobar'?}}
9 namespace barstool { int toFoobar() { return 1; } } // expected-note 3 {{'barstool::toFoobar' declared here}}
15 namespace fizbin {
16 namespace baztool { bool toFoobar() { return true; } } // expected-note{{'fizbin::baztool' declared here}}
17 namespace nested { bool moreFoobar() { return true; } } // expected-note{{'fizbin::nested::moreFoobar' declared here}}
18 namespace nested { bool lessFoobar() { return true; } } // expected-note{{'fizbin::nested' declared here}} \
42 namespace N {
43 namespace inner {
52 namespace realstd
    [all...]
  /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/namespace.memdef/
p3.cpp 3 // C++'0x [namespace.memdef] p3:
4 // Every name first declared in a namespace is a member of that namespace. If
7 // enclosing namespace.
9 namespace N {
20 // Ensure we can handle attaching friend declarations to an enclosing namespace
22 namespace N { struct S1 { struct IS1; }; }
23 namespace N {
36 // namespace scope (either before or after the class definition granting
43 // consider any scopes outside the innermost enclosing namespace
    [all...]
  /libcore/luni/src/main/java/javax/xml/namespace/
NamespaceContext.java 20 package javax.xml.namespace;
25 * <p>Interface for read only XML Namespace context processing.</p>
27 * <p>An XML Namespace has the properties:</p>
29 * <li>Namespace URI:
30 * Namespace name expressed as a URI to which the prefix is bound</li>
33 * ("xmlns") in the Namespace declaration</li>
35 * <p> example: <code>&lt;element xmlns:prefix="http://Namespace-name-URI"&gt;</code></p>
38 * for Namespace URI and prefix resolution.</p>
40 * <p>Note that a Namespace URI can be bound to
43 * ("xmlns") Namespace declarations occur in the same Start-Tag an
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/detail/
workaround.hpp 28 namespace boost {
30 namespace unit_test {
32 namespace ut_detail {
53 } // namespace ut_detail
55 } // namespace unit_test
57 namespace unit_test_framework = unit_test;
59 } // namespace boost
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.argdep/
p4.cpp 3 namespace A {
10 namespace B {
17 namespace D {
21 namespace C {
29 namespace D {
30 using namespace C;
33 namespace Test {
36 // FIXME: namespace-aware typo correction causes an extra, misleading
52 namespace test1 {
p2.cpp 3 namespace N {
16 namespace M {
34 namespace N {
45 namespace M {
65 namespace O {
80 namespace P {
89 namespace test5 {
90 namespace NS {
103 namespace test6 {
113 namespace test7
    [all...]
  /external/clang/test/CodeGenCXX/
incomplete-types.cpp 16 namespace incomplete_type_refs {
34 namespace PR10395 {
40 namespace PR10384 {
  /external/clang/test/PCH/
cxx-friends.h 8 namespace PR12585 {
20 namespace Lazy {
28 namespace std {
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
SoapPrimitive.java 33 * namespace, name and string value (this is how the stockquote example works).
37 String namespace; field in class:SoapPrimitive
41 public SoapPrimitive(String namespace, String name, String value) {
42 this.namespace = namespace;
53 && (namespace == null ? p.namespace == null : namespace.equals(p.namespace))
59 return name.hashCode() ^ (namespace == null ? 0 : namespace.hashCode())
    [all...]
  /external/libxml2/test/c14n/exc-without-comments/
merlin-c14n-two-16.xpath 3 (//. | //@* | //namespace::*)
5 <!-- only directly-used namespace nodes -->
7 (string(self::node()) = namespace-uri(parent::node()))
merlin-c14n-two-17.xpath 3 (//. | //@* | //namespace::*)
5 <!-- no namespace nodes but the default on alternate elements -->
8 (namespace-uri() != "") or
merlin-c14n-two-25.xpath 3 (//. | //@* | //namespace::*)
5 <!-- only directly-used namespace nodes -->
7 (string(self::node()) = namespace-uri(parent::node()))
merlin-c14n-two-26.xpath 3 (//. | //@* | //namespace::*)
5 <!-- no namespace nodes but the default on alternate elements -->
8 (namespace-uri() != "") or
  /external/libxml2/test/c14n/without-comments/
merlin-c14n-two-07.xpath 3 (//. | //@* | //namespace::*)
5 <!-- only directly-used namespace nodes -->
7 (string(self::node()) = namespace-uri(parent::node()))
merlin-c14n-two-08.xpath 3 (//. | //@* | //namespace::*)
5 <!-- no namespace nodes but the default on alternate elements -->
8 (namespace-uri() != "") or
  /external/libxml2/test/schemas/
any3_0.xsd 10 <xsd:any namespace="##other" processContents="lax"/>
11 <xsd:any namespace="##other" processContents="lax"/>
12 <xsd:any namespace="##other" processContents="lax"/>
  /external/lldb/test/lang/cpp/namespace/
main.cpp 10 namespace {
12 int i; // Find the line number for anonymous namespace variable i.
20 namespace A {
22 namespace B {
24 int j; // Find the line number for named namespace variable j.
37 namespace Y
46 namespace Foo = A::B; // namespace alias
50 using namespace Foo; // using directive
52 namespace A
    [all...]
  /external/protobuf/src/google/protobuf/compiler/java/
java_context.h 40 namespace google {
41 namespace protobuf {
46 namespace compiler {
47 namespace java {
51 } // namespace protobuf
53 namespace protobuf {
54 namespace compiler {
55 namespace java {
90 } // namespace java
91 } // namespace compile
    [all...]

Completed in 763 milliseconds

<<11121314151617181920>>