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

/external/testng/src/test/java/test/listeners/
H A DDerived1.java5 class Derived1 extends BaseWithListener { class in inherits:BaseWithListener
/external/clang/test/SemaCXX/
H A Dattr-notail.cpp11 class Derived1 : public Base { class in inherits:Base
H A Dcomposite-pointer-type.cpp4 class Derived1 : 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.cpp89 struct Derived1: virtual Base { struct in namespace:UnbalancedVirtual
96 struct MostDerived: Derived1, Derived2 {
107 struct Derived1: virtual Base { struct in namespace:UnbalancedVirtual2
114 struct Derived3: Derived1 {
H A Dconditional-expr.cpp64 struct Derived1: 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'}}
231 const Abstract &abstract2 = true ? static_cast<const Abstract&>(Derived1()) : throw 3; // ok
H A Dconversion-function.cpp320 struct Derived1 : Base { }; struct in namespace:rdar8018274
324 struct SuperDerived : Derived1, Derived2 {
325 using Derived1::operator int;
H A Doverloaded-builtin-operators.cpp164 struct Derived1 : Base { }; struct in inherits:Base
172 bool test_with_base_ptrs(ConvertibleToPtrOf<Derived1> d1,
H A Dwarn-thread-safety-parsing.cpp1420 class Derived1 : public Base { }; class in namespace:InheritanceTest
1422 class Derived2 : public Base2, public Derived1 { };
1427 Derived1 mu1_;
/external/v8/tools/clang/blink_gc_plugin/tests/
H A Dclass_multiple_trace_bases.h27 class Derived1 : public Base, public Mixin1 { class in namespace:blink
28 USING_GARBAGE_COLLECTED_MIXIN(Derived1);
/external/v8/tools/clang/blink_gc_plugin/tests/legacy_naming/
H A Dclass_multiple_trace_bases.h27 class Derived1 : public Base, public Mixin1 { class in namespace:blink
28 USING_GARBAGE_COLLECTED_MIXIN(Derived1);
/external/clang/test/SemaTemplate/
H A Dmember-access-ambig.cpp20 class Derived1 : public Base { }; class in inherits:Base
24 class X : public B, public Derived2, public Derived1
H A Dclass-template-ctor-initializer.cpp67 struct Derived1 : Base { struct in namespace:NonDependentError
68 Derived1() : Base(1, 2) {} // expected-error {{no matching constructor}} function in struct:NonDependentError::Derived1
76 Derived1<void> d1;
H A Ddependent-names.cpp31 template <class T> class Derived1 : Base<T> { class in namespace:test0
78 Derived1<int> d1;
/external/eigen/test/
H A Dproduct.h13 template<typename Derived1, typename Derived2>
14 bool areNotApprox(const MatrixBase<Derived1>& m1, const MatrixBase<Derived2>& m2, typename Derived1::RealScalar epsilon = NumTraits<typename Derived1::RealScalar>::dummy_precision()) argument
/external/clang/test/Analysis/
H A Dreinterpret-cast.cpp24 class Derived1 : public Base1 {}; class in namespace:PR14872
26 Derived1 *f1();
45 // In this case, 'p' actually refers to a Derived1.
H A Dderived-to-base.cpp375 class Derived1 : public Base { class in namespace:PR15394::Original
380 class Derived2 : public Derived1 {
389 Derived1 *d1p = reinterpret_cast<Derived1*>(new Derived2);
402 class Derived1 : public Base { class in namespace:PR15394::VirtualInDerived
408 class Derived2 : public Derived1 {
417 Derived1 *d1p = reinterpret_cast<Derived1*>(new Derived2);
430 class Derived1 : public Base { class in namespace:PR15394::NoCast
436 class Derived2 : public Derived1 {
[all...]
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
H A Dp12.cpp79 template <typename T> struct Derived1 : Base { struct in namespace:test2
87 Derived1<int> d1;
114 struct Derived1 : Base { struct in namespace:test3
137 expect<0>(Derived1().foo<int>()); // expected-error {{no matching member function for call to 'foo'}}
138 expect<2>(Derived1().foo<0>());
/external/clang/test/CXX/except/except.spec/
H A Dp14.cpp127 struct Derived1 : Base, X<5> { struct in namespace:InhCtor
138 static_assert(noexcept(Derived1(X<0>())), "");
139 static_assert(!noexcept(Derived1(X<1>())), "");
140 static_assert(!noexcept(Derived1(X<2>())), "");
/external/google-breakpad/src/testing/test/
H A Dgmock_stress_test.cc77 class Derived1 : public Base { class in namespace:testing::__anon7610
79 Derived1(int a_x, int a_y) : Base(a_x), y_(a_y) {} function in class:testing::__anon7610::Derived1
93 linked_ptr<Derived1> pointer1(new Derived1(1, 2));
108 linked_ptr<Derived1> p1(pointer1);
122 const linked_ptr<Derived1> p0(new Derived1(1, 2));
130 linked_ptr<Derived1> p1(p0);
131 linked_ptr<Derived1> p2(p0);
/external/googletest/googlemock/test/
H A Dgmock_stress_test.cc77 class Derived1 : public Base { class in namespace:testing::__anon7700
79 Derived1(int a_x, int a_y) : Base(a_x), y_(a_y) {} function in class:testing::__anon7700::Derived1
93 linked_ptr<Derived1> pointer1(new Derived1(1, 2));
108 linked_ptr<Derived1> p1(pointer1);
122 const linked_ptr<Derived1> p0(new Derived1(1, 2));
130 linked_ptr<Derived1> p1(p0);
131 linked_ptr<Derived1> p2(p0);
/external/v8/testing/gmock/test/
H A Dgmock_stress_test.cc77 class Derived1 : public Base { class in namespace:testing::__anon27952
79 Derived1(int a_x, int a_y) : Base(a_x), y_(a_y) {} function in class:testing::__anon27952::Derived1
93 linked_ptr<Derived1> pointer1(new Derived1(1, 2));
108 linked_ptr<Derived1> p1(pointer1);
122 const linked_ptr<Derived1> p0(new Derived1(1, 2));
130 linked_ptr<Derived1> p1(p0);
131 linked_ptr<Derived1> p2(p0);
/external/clang/test/CXX/class.access/
H A Dp4.cpp133 class Derived1 : Base<1> { }; class in namespace:test3
166 class Derived1 : private Base { // expected-note 2 {{declared private here}} \ class in namespace:test4
171 Private test1(Derived1 &d) { return d; } // expected-error {{'operator Private' is a private member}} \
172 // expected-error {{cannot cast 'test4::Derived1' to its private base class}}
173 Public test2(Derived1 &d) { return d; } // expected-error {{cannot cast 'test4::Derived1' to its private base class}} \
/external/python/cpython3/Lib/test/
H A Dtest_descr.py4613 class Derived1(Base): class in function:.test_bound_method_repr
4619 derived1 = Derived1()
4625 r"<bound method .*Base\.method of <.*Derived1 object at .*>>")

Completed in 1320 milliseconds