Searched defs:Outer (Results 1 - 25 of 34) sorted by relevance

12

/external/clang/test/CXX/class/class.nest/
H A Dp1-cxx0x.cpp3 class Outer { class
H A Dp1.cpp3 class Outer { class
/external/clang/test/CodeGenCXX/
H A Dcxx1y-variable-template.cpp11 template<typename T> struct Outer { struct
16 Outer<char[100]> outer_int;
18 template<typename T> template<typename U> template<typename V> int Outer<T>::Inner<U>::arr[sizeof(T) + sizeof(U) + sizeof(V)] = { init_arr() };
19 int *p = Outer<char[100]>::Inner<char[20]>::arr<char[3]>;
H A Dtemplate-linkage.cpp49 struct Outer { struct in namespace:PR14825
60 Outer o;
61 typedef void (Outer::*mptr)();
62 mptr method = &Outer::Get<local>;
/external/clang/test/SemaCXX/
H A Dvirtual-member-functions-key-function.cpp22 struct Outer { struct
29 void Outer::Inner::g() { }
H A Dcxx0x-defaulted-functions.cpp155 struct Outer { struct in namespace:PR14577
168 Outer<T>::Inner1<T>::~Inner1() = delete; // expected-error {{nested name specifier 'Outer<T>::Inner1<T>::' for declaration does not refer into a class, class template or class template partial specialization}} expected-error {{only functions can have deleted definitions}}
171 Outer<T>::Inner2<T>::~Inner2() = default; // expected-error {{nested name specifier 'Outer<T>::Inner2<T>::' for declaration does not refer into a class, class template or class template partial specialization}} expected-error {{only special member functions may be defaulted}}
H A Dfriend.cpp21 template <class T> struct Outer { struct in namespace:test1
24 friend void Outer::foo(T);
29 (void) Outer<int>::Inner();
/external/clang/test/CXX/class/class.friend/
H A Dp1.cpp3 struct Outer { struct
31 friend class Outer::Inner;
32 friend int Outer::Inner::intfield; // expected-error {{friends can only be classes or functions}}
33 friend int Outer::Inner::missing_field; //expected-error {{friends can only be classes or functions}}
/external/clang/test/Modules/Inputs/
H A Dtemplates-top.h25 template<typename T> struct Outer { struct
H A Dcxx-templates-common.h27 template<typename T> struct Outer { struct
/external/clang/test/CXX/temp/temp.decls/temp.class.spec/
H A Dp6.cpp39 struct Outer { struct
45 Outer<int, int> outer; // expected-note{{instantiation}}
59 struct Outer { struct in namespace:rdar8651930
74 int array0[Outer<int>::Inner<int, int>::value? 1 : -1];
75 int array1[Outer<int>::Inner<int, float>::value? -1 : 1];
/external/clang/test/SemaTemplate/
H A Dms-delayed-default-template-args.cpp25 struct Outer { struct in namespace:test_inner_class_template
33 template struct Outer::Foo<>;
H A Dconstructor-template.cpp36 struct Outer { struct
41 explicit Outer(const A& a) : alloc(a) { } function in struct:Outer
45 Outer<int> oi(xi);
46 Outer<float> of(xi);
H A Dnested-template.cpp17 struct Outer { struct
36 class Outer<X>::Inner0 {
43 void Outer<X>::Inner0<Y>::f(X, Y) {
48 struct Outer<X>::Inner1<Y>::ReallyInner {
56 void Outer<X>::Inner1<Y>::ReallyInner::g(X, Y) {
61 X Outer<X>::Inner1<Y>::foo(Y) {
68 X Outer<X>::Inner1<Y>::bar(Z) {
75 X* Outer<X>::Inner1<Y>::bar(Z) {
81 X Outer<X>::Inner1<Y>::value1 = 0;
85 Y Outer<
[all...]
H A Dinstantiate-declref.cpp3 struct Outer { struct in namespace:N
17 Outer::Inner::InnerTemplate<type>::VeryInner::Kind2 = K2Val;
25 Outer::Inner::InnerTemplate<type>::VeryInner::Kind2 = K2Val;
38 template struct N::Outer::Inner::InnerTemplate<INT>::VeryInner;
39 template struct N::Outer::Inner::InnerTemplate<INT>::UeberInner; // expected-error{{no struct named 'UeberInner' in 'N::Outer::Inner::InnerTemplate<int>'}}
H A Dmember-template-access-expr.cpp109 class Outer class in namespace:PR6021
116 const Outer& o;
/external/clang/test/Analysis/inlining/
H A Dpath-notes.c124 struct Outer { struct
130 void test(struct Outer *wrapperPtr) {
H A Dpath-notes.cpp286 class Outer { class in namespace:PR17746
289 ~Outer() {
295 void test(Outer *outer) {
297 // expected-note@-1 {{Calling '~Outer'}}
5028 // CHECK-NEXT: <string>Calling &apos;~Outer&apos;</string>
5030 // CHECK-NEXT: <string>Calling &apos;~Outer&apos;</string>
5119 // CHECK-NEXT: <string>Entered call from &apos;~Outer&apos;</string>
5121 // CHECK-NEXT: <string>Entered call from &apos;~Outer&apos;</string>
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/
H A Dp8.cpp41 struct Outer {}; struct in namespace:ADL
46 void fo(Outer);
57 ADL::Outer o;
/external/clang/test/Index/
H A Dcomment-cplus-decls.cpp102 template <class T> struct Outer { struct in namespace:test1
108 friend void Outer::foo(T);
/external/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITTest.cpp167 Function *Outer; local
171 Outer = startFunction<int32_t(void)>(M.get(), funcName.str());
173 endFunctionWithRet(Outer, innerResult);
175 Inner = Outer;
179 uint64_t ptr = TheJIT->getFunctionAddress(Outer->getName().str());
/external/clang/lib/AST/
H A DMangle.cpp40 StringRef Outer,
45 Out << "__" << Outer << "_block_invoke"; local
47 Out << "__" << Outer << "_block_invoke_" << discriminator+1;
39 mangleFunctionBlock(MangleContext &Context, StringRef Outer, const BlockDecl *BD, raw_ostream &Out) argument
/external/clang/test/Analysis/
H A Darray-struct-region.c259 } Outer; typedef in typeref:struct:__anon18307
263 Outer zoomRegion;
266 Outer r = zoomRegion;
/external/clang/test/CXX/class.access/
H A Dp6.cpp88 struct Outer { struct in namespace:test3
93 template <class T> class Outer::A<T, typename T::nature> {
95 static void foo(); // expected-note {{'Outer::A<B, Green>::foo' declared here}}
100 friend class Outer;
104 Outer::A<B, Green>::foo();
105 Outer::A<B, Blue>::foo(); // expected-error {{no member named 'foo' in 'test3::Outer::A<test3::B, test3::Blue>'; did you mean 'Outer::A<B, Green>::foo'?}}
/external/clang/test/CXX/temp/temp.param/
H A Dp15-cxx0x.cpp32 template<typename...Ts> struct Outer { struct in namespace:ParameterPackExpansions
50 Outer<int, char, int*>::

Completed in 567 milliseconds

12