HomeSort by relevance Sort by last modified time
    Searched defs:Derived2 (Results 1 - 25 of 28) sorted by null

1 2

  /art/test/078-polymorphic-virtual/src/
Derived2.java 17 public class Derived2 extends Base {
  /external/testng/src/test/java/test/listeners/
Derived2.java 5 class Derived2 extends BaseWithListener {
  /external/v8/tools/clang/plugins/tests/
blacklisted_dirs.cpp 15 struct Derived2 : public Base {
  /external/clang/test/Index/
annotate-context-sensitive.cpp 17 struct Derived2 : Base2 {
  /external/clang/test/CXX/class.derived/
p1.cpp 27 struct Derived2 : decltype(func()) { }; // expected-error {{base specifier must name a class}}
  /external/v8/tools/clang/blink_gc_plugin/tests/
class_multiple_trace_bases.h 32 class Derived2 : public Base, public Mixin1, public Mixin2 {
33 USING_GARBAGE_COLLECTED_MIXIN(Derived2);
  /external/clang/test/SemaCXX/
composite-pointer-type.cpp 5 class Derived2 : 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 93 struct Derived2: virtual Base {
96 struct MostDerived: Derived1, Derived2 {
111 struct Derived2: virtual Base {
118 struct MostDerived: Derived3, Derived2 {
offsetof.cpp 49 struct Derived2 : public Base1, public Base2 {
53 int derived1[__builtin_offsetof(Derived2, x) == 0? 1 : -1];
54 int derived2[__builtin_offsetof(Derived2, y) == 4? 1 : -1]; variable
55 int derived3[__builtin_offsetof(Derived2, z) == 8? 1 : -1];
overloaded-builtin-operators.cpp 165 struct Derived2 : Base { };
173 ConvertibleToPtrOf<Derived2> d2) {
conditional-expr.cpp 67 struct Derived2: Abstract {
230 const Abstract &abstract1 = true ? static_cast<const Abstract&>(Derived1()) : Derived2(); // expected-error {{allocating an object of abstract class type 'const Abstract'}}
conversion-function.cpp 322 struct Derived2 : Base { };
324 struct SuperDerived : Derived1, Derived2 {
  /external/clang/test/SemaTemplate/
instantiate-cast.cpp 120 struct Derived2 : public Base { };
122 void test_derived_to_base(Base *&bp, Derived2<int> *dp) {
member-access-ambig.cpp 22 class Derived2 : public Base { };
24 class X : public B, public Derived2, public Derived1
class-template-ctor-initializer.cpp 72 struct Derived2 : Base {
73 Derived2() : BaseClass(1) {} // expected-error {{does not name a non-static data member or base}}
77 Derived2<void> d2;
dependent-names.cpp 54 template <class T> class Derived2 : Base<T>::Inner {
84 Derived2<int> d2;
  /external/clang/test/CodeGenCXX/
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 {
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::efg()
    [all...]
  /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
p12.cpp 93 template <typename T> struct Derived2 : Base {
101 Derived2<int> d2;
119 struct Derived2 : Base {
139 expect<0>(Derived2().foo<int>()); // expected-error {{no matching member function for call to 'foo'}}
140 expect<2>(Derived2().foo<0>());
  /external/libcxxabi/test/
catch_pointer_reference.pass.cpp 37 struct Derived2 : Base {};
38 struct Ambiguous : Derived, Derived2 {};
  /external/clang/test/Analysis/
reinterpret-cast.cpp 29 class Derived2 : public Base2 {};
42 Derived2 *p;
derived-to-base.cpp 380 class Derived2 : public Derived1 {
389 Derived1 *d1p = reinterpret_cast<Derived1*>(new Derived2);
408 class Derived2 : public Derived1 {
417 Derived1 *d1p = reinterpret_cast<Derived1*>(new Derived2);
436 class Derived2 : public Derived1 {
445 Derived1 *d1p = new Derived2;
  /external/clang/test/CXX/except/except.spec/
p14.cpp 87 struct Derived2 : ThrowingBase {
88 Derived2() = default;
89 Derived2(const Derived2&) = default;
90 Derived2(Derived2&&) = default;
91 Derived2 &operator=(const Derived2&) = default;
92 Derived2 &operator=(Derived2&&) = default
    [all...]
  /external/clang/test/CXX/class.access/
p4.cpp 135 class Derived2 : // expected-error {{inherited virtual base class 'Base<2>' has private destructor}} \
142 ~Derived2() {}
177 class Derived2 : public Base {
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/
p5-var.cpp 11 struct Derived2 : Base { };
12 struct Diamond : Derived, Derived2 { };
24 operator Derived2&(); // expected-note{{candidate function}}
41 operator Derived2(); // expected-note{{candidate function}}
  /external/google-breakpad/src/testing/test/
gmock_stress_test.cc 85 class Derived2 : public Base {
87 Derived2(int a_x, int a_z) : Base(a_x), z_(a_z) {}
94 linked_ptr<Derived2> pointer2(new Derived2(3, 4));

Completed in 569 milliseconds

1 2