HomeSort by relevance Sort by last modified time
    Searched defs:Derived1 (Results 1 - 21 of 21) sorted by null

  /art/test/078-polymorphic-virtual/src/
Derived1.java 17 public class Derived1 extends Base {
  /external/testng/src/test/java/test/listeners/
Derived1.java 5 class Derived1 extends BaseWithListener {
  /external/clang/test/SemaCXX/
attr-notail.cpp 11 class Derived1 : public Base {
composite-pointer-type.cpp 4 class Derived1 : public Base { };
7 void f0(volatile Base *b, Derived1 *d1, const Derived2 *d2) {
18 void f1(volatile Base *b, Derived1 *d1, const Derived2 *d2) {
warn-overloaded-virtual.cpp 89 struct Derived1: virtual Base {
96 struct MostDerived: Derived1, Derived2 {
107 struct Derived1: virtual Base {
114 struct Derived3: Derived1 {
overloaded-builtin-operators.cpp 164 struct Derived1 : Base { };
172 bool test_with_base_ptrs(ConvertibleToPtrOf<Derived1> d1,
conditional-expr.cpp 64 struct Derived1: 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
conversion-function.cpp 320 struct Derived1 : Base { };
324 struct SuperDerived : Derived1, Derived2 {
325 using Derived1::operator int;
warn-thread-safety-parsing.cpp     [all...]
  /external/v8/tools/clang/blink_gc_plugin/tests/
class_multiple_trace_bases.h 27 class Derived1 : public Base, public Mixin1 {
28 USING_GARBAGE_COLLECTED_MIXIN(Derived1);
  /external/clang/test/SemaTemplate/
member-access-ambig.cpp 20 class Derived1 : public Base { };
24 class X : public B, public Derived2, public Derived1
class-template-ctor-initializer.cpp 67 struct Derived1 : Base {
68 Derived1() : Base(1, 2) {} // expected-error {{no matching constructor}}
76 Derived1<void> d1;
dependent-names.cpp 31 template <class T> class Derived1 : Base<T> {
78 Derived1<int> d1;
  /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
p12.cpp 79 template <typename T> struct Derived1 : Base {
87 Derived1<int> d1;
114 struct Derived1 : Base {
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/Analysis/
reinterpret-cast.cpp 24 class Derived1 : public Base1 {};
26 Derived1 *f1();
45 // In this case, 'p' actually refers to a Derived1.
derived-to-base.cpp 375 class Derived1 : public Base {
380 class Derived2 : public Derived1 {
389 Derived1 *d1p = reinterpret_cast<Derived1*>(new Derived2);
402 class Derived1 : public Base {
408 class Derived2 : public Derived1 {
417 Derived1 *d1p = reinterpret_cast<Derived1*>(new Derived2);
430 class Derived1 : public Base {
436 class Derived2 : public Derived1 {
    [all...]
  /external/clang/test/CXX/except/except.spec/
p14.cpp 127 struct Derived1 : Base, X<5> {
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/
gmock_stress_test.cc 77 class Derived1 : public Base {
79 Derived1(int a_x, int a_y) : Base(a_x), y_(a_y) {}
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/
gmock_stress_test.cc 77 class Derived1 : public Base {
79 Derived1(int a_x, int a_y) : Base(a_x), y_(a_y) {}
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/
gmock_stress_test.cc 77 class Derived1 : public Base {
79 Derived1(int a_x, int a_y) : Base(a_x), y_(a_y) {}
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/
p4.cpp 133 class Derived1 : Base<1> { };
166 class Derived1 : private Base { // expected-note 2 {{declared private here}} \
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}} \

Completed in 1217 milliseconds