Home
last modified time | relevance | path

Searched refs:Derived3 (Results 1 – 8 of 8) sorted by relevance

/external/clang/test/CXX/except/except.spec/
Dp14.cpp95 struct Derived3 : ThrowingBase { struct
96 Derived3() noexcept(true) = default; // expected-error {{does not match the calculated}}
97Derived3(const Derived3&) noexcept(true) = default; // expected-error {{does not match the calcula…
98Derived3(Derived3&&) noexcept(true) = default; // expected-error {{does not match the calculated}}
99Derived3 &operator=(const Derived3&) noexcept(true) = default; // expected-error {{does not match …
100Derived3 &operator=(Derived3&&) noexcept(true) = default; // expected-error {{does not match the c…
101 ~Derived3() noexcept(true) = default; // expected-error {{does not match the calculated}}
134 struct Derived3 : Base { struct
142 static_assert(!noexcept(Derived3(X<0>())), "");
/external/clang/test/CXX/class.derived/
Dp1.cpp30 struct Derived3 : decltype(T().foo()) { }; struct
32 Derived3<Foo> d;
/external/clang/test/CXX/class.access/
Dp4.cpp145 …class Derived3 : // expected-error 2 {{inherited virtual base class 'Base<2>' has private destruct… class
153 Derived3 d3; // expected-note {{implicit default constructor}}\
184 class Derived3 : private Base { // expected-note {{constrained by private inheritance here}} \ class
189 Private test1(Derived3 &d) { return d; } in test1()
190 …Public test2(Derived3 &d) { return d; } // expected-error {{'operator Public' is a private member … in test2()
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
Dp12.cpp124 struct Derived3 : Base { struct
141 expect<3>(Derived3().foo<int>()); in test()
142 …expect<1>(Derived3().foo<0>()); // expected-error {{no matching member function for call to 'foo'}} in test()
/external/clang/test/SemaCXX/
Dwarn-overloaded-virtual.cpp114 struct Derived3: Derived1 { struct
118 struct MostDerived: Derived3, Derived2 {
Dwarn-thread-safety-parsing.cpp1424 class Derived3 : public Base2 { }; class
1429 Derived3 mu3_;
Dtype-traits.cpp1647 class Derived3 : virtual Derived2a, virtual Derived2b {}; class
1674 { int arr[T(__is_base_of(Base, Derived3))]; } in is_base_of()
1675 { int arr[T(__is_base_of(Derived, Derived3))]; } in is_base_of()
1676 { int arr[T(__is_base_of(Derived2b, Derived3))]; } in is_base_of()
1677 { int arr[T(__is_base_of(Derived2a, Derived3))]; } in is_base_of()
/external/v8/tools/clang/plugins/tests/
Dblacklisted_dirs.cpp20 struct Derived3 : public Base { struct