/external/testng/src/test/java/test/listeners/ |
H A D | Derived2.java | 5 class Derived2 extends BaseWithListener { class in inherits:BaseWithListener
|
H A D | ListenerTest.java | 52 TestNG tng = create(Derived1.class, Derived2.class); 80 TestNG tng = createTests("suite", Derived1.class, Derived2.class); 100 TestNG tng = createTests("suite", Derived1.class, Derived2.class); 125 TestNG tng = create(Derived1.class, Derived2.class); 129 assertThat(MyClassListener.beforeNames).containsExactly("Derived1", "Derived2"); 130 assertThat(MyClassListener.afterNames).containsExactly("Derived1", "Derived2");
|
/external/clang/test/CodeGenCXX/ |
H A D | pr20897.cpp | 20 struct __declspec(dllexport) Derived2 : virtual Base { 21 // CHECK-LABEL: define weak_odr dllexport x86_thiscallcc %struct.Derived2* @"\01??0Derived2@@QAE@ABU0@@Z" 22 // CHECK: %[[this:.*]] = load %struct.Derived2*, %struct.Derived2** {{.*}} 23 // CHECK-NEXT: store %struct.Derived2* %[[this]], %struct.Derived2** %[[retval:.*]] 24 // CHECK: %[[dest_a_gep:.*]] = getelementptr inbounds %struct.Derived2, %struct.Derived2* %[[this]], i32 0, i32 1 25 // CHECK-NEXT: %[[src_load:.*]] = load %struct.Derived2*, [all...] |
H A D | apple-kext-indirect-call-2.cpp | 5 // CHECK: @_ZTV8Derived2 = unnamed_addr constant [5 x i8*] [i8* null, i8* null, i8* null, i8* bitcast (i8* (%struct.Derived2*)* @_ZNK8Derived23efgEv to i8*), i8* null] 45 struct Derived2 : virtual Base2 { struct in inherits:Base2 49 char* Derived2::efg(void) const { return 0; } 51 void FUNC2(Derived2* p) { 52 // CHECK: [[V1:%.*]] = load i8* (%struct.Derived2*)*, i8* (%struct.Derived2*)** getelementptr inbounds (i8* (%struct.Derived2*)*, i8* (%struct.Derived2*)** bitcast ([5 x i8*]* @_ZTV8Derived2 to i8* (%struct.Derived2*)**), i64 3) 54 char* c = p->Derived2 [all...] |
/external/clang/test/Index/ |
H A D | annotate-context-sensitive.cpp | 17 struct Derived2 : Base2 { struct in inherits:Base2
|
/external/clang/test/CXX/except/except.spec/ |
H A D | p14.cpp | 87 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/eigen/Eigen/src/Core/ |
H A D | Assign.h | 134 template<typename Derived1, typename Derived2, int Index, int Stop> 142 static EIGEN_STRONG_INLINE void run(Derived1 &dst, const Derived2 &src) 145 assign_DefaultTraversal_CompleteUnrolling<Derived1, Derived2, Index+1, Stop>::run(dst, src); 149 template<typename Derived1, typename Derived2, int Stop> 150 struct assign_DefaultTraversal_CompleteUnrolling<Derived1, Derived2, Stop, Stop> 152 static EIGEN_STRONG_INLINE void run(Derived1 &, const Derived2 &) {} 155 template<typename Derived1, typename Derived2, int Index, int Stop> 158 static EIGEN_STRONG_INLINE void run(Derived1 &dst, const Derived2 &src, typename Derived1::Index outer) 161 assign_DefaultTraversal_InnerUnrolling<Derived1, Derived2, Index+1, Stop>::run(dst, src, outer); 165 template<typename Derived1, typename Derived2, in [all...] |
H A D | SelfAdjointView.h | 204 template<typename Derived1, typename Derived2, int UnrollCount, bool ClearOpposite> 205 struct triangular_assignment_selector<Derived1, Derived2, (SelfAdjoint|Upper), UnrollCount, ClearOpposite> 212 static inline void run(Derived1 &dst, const Derived2 &src) 214 triangular_assignment_selector<Derived1, Derived2, (SelfAdjoint|Upper), UnrollCount-1, ClearOpposite>::run(dst, src); 223 template<typename Derived1, typename Derived2, bool ClearOpposite> 224 struct triangular_assignment_selector<Derived1, Derived2, SelfAdjoint|Upper, 0, ClearOpposite> 226 static inline void run(Derived1 &, const Derived2 &) {} 229 template<typename Derived1, typename Derived2, int UnrollCount, bool ClearOpposite> 230 struct triangular_assignment_selector<Derived1, Derived2, (SelfAdjoint|Lower), UnrollCount, ClearOpposite> 237 static inline void run(Derived1 &dst, const Derived2 [all...] |
H A D | Assign_MKL.h | 76 template<typename Derived1, typename Derived2, typename UnaryOp, int Traversal, int Unrolling, 77 int VmlTraversal = vml_assign_traits<Derived1, Derived2, UnaryOp>::Traversal > 79 : assign_impl<Derived1, Eigen::CwiseUnaryOp<UnaryOp, Derived2>,Traversal,Unrolling,BuiltIn> 83 template<typename Derived1, typename Derived2, typename UnaryOp, int Traversal, int Unrolling> 84 struct vml_assign_impl<Derived1, Derived2, UnaryOp, Traversal, Unrolling, InnerVectorizedTraversal> 88 static inline void run(Derived1& dst, const CwiseUnaryOp<UnaryOp, Derived2>& src) 91 // assign_impl<Derived1,Eigen::CwiseUnaryOp<UnaryOp, Derived2>,Traversal,Unrolling,BuiltIn>::run(dst,src); 103 template<typename Derived1, typename Derived2, typename UnaryOp, int Traversal, int Unrolling> 104 struct vml_assign_impl<Derived1, Derived2, UnaryOp, Traversal, Unrolling, LinearVectorizedTraversal> 106 static inline void run(Derived1& dst, const CwiseUnaryOp<UnaryOp, Derived2> [all...] |
H A D | TriangularMatrix.h | 441 template<typename Derived1, typename Derived2, unsigned int Mode, int UnrollCount, bool ClearOpposite> 451 static inline void run(Derived1 &dst, const Derived2 &src) 453 triangular_assignment_selector<Derived1, Derived2, Mode, UnrollCount-1, ClearOpposite>::run(dst, src); 476 template<typename Derived1, typename Derived2, unsigned int Mode, bool ClearOpposite> 477 struct triangular_assignment_selector<Derived1, Derived2, Mode, 0, ClearOpposite> 479 static inline void run(Derived1 &, const Derived2 &) {} 482 template<typename Derived1, typename Derived2, bool ClearOpposite> 483 struct triangular_assignment_selector<Derived1, Derived2, Upper, Dynamic, ClearOpposite> 487 static inline void run(Derived1 &dst, const Derived2 &src) 501 template<typename Derived1, typename Derived2, boo [all...] |
/external/clang/test/SemaCXX/ |
H A D | composite-pointer-type.cpp | 5 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 D | offsetof.cpp | 49 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 D | warn-overloaded-virtual.cpp | 93 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 {
|
/external/clang/test/SemaTemplate/ |
H A D | class-template-ctor-initializer.cpp | 72 struct Derived2 : Base { struct in namespace:NonDependentError 73 Derived2() : BaseClass(1) {} // expected-error {{does not name a non-static data member or base}} function in struct:NonDependentError::Derived2 77 Derived2<void> d2;
|
H A D | member-access-ambig.cpp | 22 class Derived2 : public Base { }; class in inherits:Base 24 class X : public B, public Derived2, public Derived1
|
H A D | instantiate-cast.cpp | 113 struct Derived2 : public Base { }; struct in inherits:Base 115 void test_derived_to_base(Base *&bp, Derived2<int> *dp) {
|
/external/eigen/doc/examples/ |
H A D | TemplateKeyword_flexible.cpp | 6 template <typename Derived1, typename Derived2> 7 void copyUpperTriangularPart(MatrixBase<Derived1>& dst, const MatrixBase<Derived2>& src)
|
/external/clang/test/CXX/class.derived/ |
H A D | p1.cpp | 27 struct Derived2 : decltype(func()) { }; // expected-error {{base specifier must name a class}} struct in namespace:PR11216
|
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/ |
H A D | p5-var.cpp | 11 struct Derived2 : Base { }; struct in inherits:Base 12 struct Diamond : Derived, Derived2 { }; 24 operator Derived2&(); // expected-note{{candidate function}} 41 operator Derived2(); // expected-note{{candidate function}}
|
/external/clang/test/Analysis/ |
H A D | reinterpret-cast.cpp | 29 class Derived2 : public Base2 {}; class in namespace:PR14872 42 Derived2 *p;
|
H A D | derived-to-base.cpp | 380 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/v8/test/mjsunit/es6/ |
H A D | debug-step-into-constructor.js | 81 class Derived2 extends Derived {} 84 new Derived2(); // 0.
|
H A D | new-target.js | 43 class Derived2 extends Derived {} 45 new Derived2(Derived2); 46 new Derived2(Derived2, 'extra'); 145 class Derived2 extends Base { 151 assertInstanceof(new Derived2(Derived2), RegExp); 152 assertInstanceof(new Derived2(Derived2, 'extr [all...] |
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/ |
H A D | p12.cpp | 91 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/CXX/class.access/ |
H A D | p4.cpp | 135 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; }
|