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

/external/chromium_org/tools/clang/plugins/tests/
H A Dblacklisted_dirs.cpp15 struct Derived2 : public Base { struct in inherits:Base
/external/clang/test/Index/
H A Dannotate-context-sensitive.cpp17 struct Derived2 : Base2 { struct in inherits:Base2
/external/clang/test/CXX/class.derived/
H A Dp1.cpp27 struct Derived2 : decltype(func()) { }; // expected-error {{base specifier must name a class}} struct in namespace:PR11216
/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 Dclass-template-ctor-initializer.cpp66 struct Derived2 : Base { struct in namespace:NonDependentError
67 Derived2() : BaseClass(1) {} // expected-error {{does not name a non-static data member or base}} function in struct:NonDependentError::Derived2
71 Derived2<void> d2;
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 Dwarn-overloaded-virtual.cpp93 struct Derived2: virtual Base { struct in namespace:UnbalancedVirtual
96 struct MostDerived: Derived1, Derived2 {
111 struct Derived2: virtual Base { struct in namespace:UnbalancedVirtual2
118 struct MostDerived: Derived3, Derived2 {
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 Dconditional-expr.cpp67 struct Derived2: Abstract { struct in inherits:Abstract
230 const Abstract &abstract1 = true ? static_cast<const Abstract&>(Derived1()) : Derived2(); // expected-error {{allocating an object of abstract class type 'const Abstract'}}
H A Dconversion-function.cpp301 struct Derived2 : Base { }; struct in namespace:rdar8018274
303 struct SuperDerived : Derived1, Derived2 {
H A Doverloaded-builtin-operators.cpp157 struct Derived2 : Base { }; struct in inherits:Base
165 ConvertibleToPtrOf<Derived2> d2) {
H A Dwarn-thread-safety-parsing.cpp1422 class Derived2 : public Base2, public Derived1 { }; class in namespace:InheritanceTest
1428 Derived2 mu2_;
/external/libcxxabi/test/
H A Dcatch_pointer_reference.cpp35 struct Derived2 : Base {}; struct in inherits:Base
36 struct Ambiguous : Derived, Derived2 {};
/external/clang/test/Analysis/
H A Dreinterpret-cast.cpp29 class Derived2 : public Base2 {}; class in namespace:PR14872
42 Derived2 *p;
H A Dderived-to-base.cpp380 class Derived2 : public Derived1 { class in namespace:PR15394::Original
389 Derived1 *d1p = reinterpret_cast<Derived1*>(new Derived2);
408 class Derived2 : public Derived1 { class in namespace:PR15394::VirtualInDerived
417 Derived1 *d1p = reinterpret_cast<Derived1*>(new Derived2);
436 class Derived2 : public Derived1 { class in namespace:PR15394::NoCast
445 Derived1 *d1p = new Derived2;
/external/clang/test/CXX/except/except.spec/
H A Dp14.cpp87 struct Derived2 : ThrowingBase { struct in namespace:PR14141
88 Derived2() = default;
89 Derived2(const Derived2&) = default;
90 Derived2(Derived2&&) = default;
91 Derived2 &operator=(const Derived2&) = default;
92 Derived2 &operator=(Derived2
[all...]
/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}}
/external/clang/test/CXX/drs/
H A Ddr1xx.cpp807 template<typename T> struct Derived2 : Base<int>, Base<char> { struct in namespace:dr176
808 typename Derived2::Base b; // expected-error {{found in multiple base classes}}
809 typename Derived2::Base<double> d;

Completed in 1595 milliseconds