HomeSort by relevance Sort by last modified time
    Searched defs:NS (Results 1 - 25 of 129) sorted by null

1 2 3 4 5 6

  /external/clang/test/CXX/basic/basic.stc/basic.stc.dynamic/basic.stc.dynamic.deallocation/
p1.cpp 7 namespace NS {
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/rdtypes/ANY/
NS.py 18 class NS(dns.rdtypes.nsbase.NSBase):
19 """NS record"""
  /external/clang/test/CodeGenCXX/
mangle-std-externc.cpp 10 namespace NS {
26 return NS::D<NS::C>::i;
funcsig.cpp 21 namespace NS {
28 // CHECK: @"\01??_C@_0ED@PFDKIEBA@void?5__thiscall?5NS?3?3NamespacedCl@" = linkonce_odr unnamed_addr constant [{{.*}} x i8] c"void __thiscall NS::NamespacedClass::namespacedMethod(int *, char)\00"
debug-info-gline-tables-only.cpp 6 namespace NS {
26 NS::C c;
27 NS::D d;
28 NS::E e;
29 NS::F f;
mangle-subst.cpp 50 namespace NS {
62 namespace NS {
66 namespace NS {
  /external/clang/test/PCH/
chain-staticvar-instantiation.cpp 11 namespace NS {
33 int g2 = NS::TS<int, 2>::value;
42 int g3 = NS::TS<int, 2>::value;
cxx-for-range.h 12 namespace NS {
17 using NS::U;
chain-friend-instantiation.cpp 9 namespace NS {
21 class TClass: public NS::TBaseClass<T>
28 namespace NS {
  /external/clang/test/CXX/basic/basic.scope/basic.scope.pdecl/
p3.cpp 5 namespace NS {
8 using namespace NS;
20 namespace NS {
23 using namespace NS;
25 using C = NS::C; // ok, same type
  /external/clang/test/Index/skip-parsed-bodies/
t.h 6 namespace NS {
14 inline int NS::C::method_def2() {
  /external/clang/test/SemaCXX/
warn-missing-prototypes.cpp 5 namespace NS {
for-range-no-std.cpp 16 namespace NS {
28 NS::iter begin(NS::NoADL); // expected-note {{not viable}}
29 NS::iter end(NS::NoADL);
36 for (int b : NS::ADL()) {} // ok
37 for (int b : NS::NoADL()) {} // expected-error {{invalid range expression of type 'NS::NoADL'}}
elaborated-type-specifier.cpp 19 namespace NS {
22 void test_elab2(struct S4 *s4); // expected-note{{'NS::S4' declared here}}
28 void test_X_elab(NS::X x) {
30 x.test_elab2(s4); // expected-error{{cannot initialize a parameter of type 'NS::S4 *' with an lvalue of type 'struct S4 *'}}
33 namespace NS {
38 S4 *s4; // expected-error{{unknown type name 'S4'; did you mean 'NS::S4'?}}
  /external/clang/test/CXX/basic/basic.stc/basic.stc.dynamic/basic.stc.dynamic.allocation/
p1.cpp 8 namespace NS {
  /external/llvm/test/tools/llvm-symbolizer/pdb/Inputs/
test.cpp 4 namespace NS {
16 NS::Foo f;
  /external/clang/test/CXX/dcl.decl/dcl.meaning/
p1.cpp 24 namespace NS {
32 namespace NS {
35 void NS::foo(); // expected-warning {{extra qualification}}
36 extern int NS::bar; // expected-warning {{extra qualification}}
37 struct NS::X; // expected-error {{forward declaration of struct cannot have a nested name specifier}} expected-warning {{extra qualification}}
38 template<typename T> struct NS::Y; // expected-error {{forward declaration of struct cannot have a nested name specifier}} expected-warning {{extra qualification}}
39 template<typename T> void NS::wibble(T); // expected-warning {{extra qualification}}
41 void NS::foo() {} // expected-warning{{extra qualification on member 'foo'}}
42 int NS::bar; // expected-warning{{extra qualification on member 'bar'}}
43 struct NS::X { }; // expected-warning{{extra qualification on member 'X'}
    [all...]
  /external/clang/test/CodeGen/
sanitize-init-order.cpp 6 // RUN: echo "type:NS::PODWithCtor=init" >> %t-type.blacklist
29 namespace NS {
44 // CHECK: ![[GLOB_4]] = !{{{.*}}class.NS::PODWithCtor{{.*}}, i1 true, i1 false}
50 // BLACKLIST: ![[GLOB_4]] = !{{{.*}}class.NS::PODWithCtor{{.*}}, i1 false, i1 false}
  /external/clang/test/Index/
file-refs.cpp 1 namespace NS {
9 void NS::C::m() {
15 NS::C c1();
16 NS::C c2 = NS::C();
52 // CHECK: NamespaceRef=NS:1:11
53 // CHECK-NEXT: Namespace=NS:1:11 (Definition) =[1:11 - 1:13]
54 // CHECK-NEXT: NamespaceRef=NS:1:11 =[9:6 - 9:8]
55 // CHECK-NEXT: NamespaceRef=NS:1:11 =[15:3 - 15:5]
56 // CHECK-NEXT: NamespaceRef=NS:1:11 =[16:3 - 16:5
    [all...]
index-refs.cpp 2 namespace NS {
11 NS::MyInt NS::gx = EnumVal;
14 NS::MyInt x;
37 namespace NS {
42 using namespace NS;
43 using namespace NS::Inn;
44 using NS::Foo;
73 // CHECK: [indexDeclaration]: kind: namespace | name: NS
79 // CHECK-NEXT: [indexEntityReference]: kind: namespace | name: NS
    [all...]
  /external/clang/test/Modules/
no-linkage.cpp 6 namespace NS { int n; } // expected-note {{candidate}}
10 namespace RealNS = NS; // expected-note {{candidate}}
32 use(NS::n);
47 use(NS::n); // expected-error {{ambiguous}}
  /external/compiler-rt/test/profile/
instrprof-value-prof-2.c 31 unsigned S, NS = 10, V;
49 for (S = 0; S < NS; S++) {
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.qual/class.qual/
p2.cpp 99 namespace NS {
100 struct NS {};
102 struct DerivedFromNS : NS::NS {
104 using InhCtor::NS::NS; // expected-error {{using declaration in class refers into 'InhCtor::NS::', which is not a class}}
  /cts/common/util/src/com/android/compatibility/common/util/
DynamicConfig.java 39 public static final String NS = null;
86 parser.require(XmlPullParser.START_TAG, NS, CONFIG_TAG);
89 parser.require(XmlPullParser.START_TAG, NS, ENTRY_TAG);
90 String key = parser.getAttributeValue(NS, KEY_ATTR);
93 parser.require(XmlPullParser.START_TAG, NS, VALUE_TAG);
95 parser.require(XmlPullParser.END_TAG, NS, VALUE_TAG);
97 parser.require(XmlPullParser.END_TAG, NS, ENTRY_TAG);
103 parser.require(XmlPullParser.END_TAG, NS, CONFIG_TAG);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
MathUtils.java 54 private static final short NS = (short)-1;
    [all...]

Completed in 1751 milliseconds

1 2 3 4 5 6