Searched defs:Derived2 (Results 1 - 12 of 12) sorted by relevance

/external/clang/test/Index/
H A Dannotate-context-sensitive.cpp17 struct Derived2 : Base2 { struct in inherits:Base2
/external/clang/test/SemaTemplate/
H A Dmember-access-ambig.cpp22 class Derived2 : public Base { }; class in inherits:Base
24 class X : public B, public Derived2, public Derived1
H A Dinstantiate-cast.cpp113 struct Derived2 : public Base { }; struct in inherits:Base
115 void test_derived_to_base(Base *&bp, Derived2<int> *dp) {
H A Ddependent-names.cpp54 template <class T> class Derived2 : Base<T>::Inner { class in namespace:test0
84 Derived2<int> d2;
/external/clang/test/CodeGenCXX/
H A Dapple-kext-indirect-call-2.C45 struct Derived2 : virtual Base2 { struct in inherits:Base2
49 char* Derived2::efg(void) const { return 0; }
51 void FUNC2(Derived2* p) {
54 char* c = p->Derived2::efg();
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
H A Dp12.cpp91 template <typename T> struct Derived2 : Base { struct in namespace:test2
99 Derived2<int> d2;
117 struct Derived2 : Base { struct in namespace:test3
137 expect<0>(Derived2().foo<int>()); // expected-error {{no matching member function for call to 'foo'}}
138 expect<2>(Derived2().foo<0>());
/external/clang/test/SemaCXX/
H A Dcomposite-pointer-type.cpp5 class Derived2 : public Base { }; class in inherits:Base
7 void f0(volatile Base *b, Derived1 *d1, const Derived2 *d2) {
18 void f1(volatile Base *b, Derived1 *d1, const Derived2 *d2) {
H A Doffsetof.cpp49 struct Derived2 : public Base1, public Base2 { struct in inherits:Base1,Base2
53 int derived1[__builtin_offsetof(Derived2, x) == 0? 1 : -1];
54 int derived2[__builtin_offsetof(Derived2, y) == 4? 1 : -1];
55 int derived3[__builtin_offsetof(Derived2, z) == 8? 1 : -1];
H A Doverloaded-builtin-operators.cpp156 struct Derived2 : Base { }; struct in inherits:Base
164 ConvertibleToPtrOf<Derived2> d2) {
H A Dconversion-function.cpp296 struct Derived2 : Base { }; struct in namespace:rdar8018274
298 struct SuperDerived : Derived1, Derived2 {
/external/clang/test/CXX/class.access/
H A Dp4.cpp135 class Derived2 : // expected-error {{inherited virtual base class 'Base<2>' has private destructor}} \ class in namespace:test3
142 ~Derived2() {}
177 class Derived2 : public Base { class in namespace:test4
181 Private test1(Derived2 &d) { return d; } // expected-error {{'operator Private' is a private member}}
182 Public test2(Derived2 &d) { return d; }
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
H A Dp5-var.cpp6 struct Derived2 : Base { }; struct in inherits:Base
7 struct Diamond : Derived, Derived2 { };
19 operator Derived2&(); // expected-note{{candidate function}}
36 operator Derived2(); // expected-note{{candidate function}}

Completed in 175 milliseconds