HomeSort by relevance Sort by last modified time
    Searched refs:PrivateDestructor (Results 1 - 7 of 7) sorted by null

  /external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/
is_nothrow_destructible.pass.cpp 55 struct PrivateDestructor { private: ~PrivateDestructor() {}};
108 test_is_not_nothrow_destructible<PrivateDestructor>();
is_trivially_destructible.pass.cpp 54 struct PrivateDestructor { private: ~PrivateDestructor() {}};
113 test_is_not_trivially_destructible<PrivateDestructor>();
is_destructible.pass.cpp 80 struct PrivateDestructor { private: ~PrivateDestructor() {}};
128 test_is_not_destructible<PrivateDestructor>();
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/meta/meta.unary/meta.unary.prop/
is_nothrow_destructible.pass.cpp 50 struct PrivateDestructor { private: ~PrivateDestructor() {}};
103 test_is_not_nothrow_destructible<PrivateDestructor>();
is_trivially_destructible.pass.cpp 49 struct PrivateDestructor { private: ~PrivateDestructor() {}};
108 test_is_not_trivially_destructible<PrivateDestructor>();
is_destructible.pass.cpp 74 struct PrivateDestructor { private: ~PrivateDestructor() {}};
122 test_is_not_destructible<PrivateDestructor>();
  /external/clang/test/CXX/special/class.copy/
implicit-move.cpp 82 struct PrivateDestructor {
83 PrivateDestructor() noexcept;
84 PrivateDestructor(const PrivateDestructor &) noexcept(false);
85 PrivateDestructor(PrivateDestructor &&) noexcept;
87 ~PrivateDestructor() noexcept;
90 struct InheritsPrivateDestructor : PrivateDestructor {}; // expected-note{{base class 'PrivateDestructor' has an inaccessible destructor}}
92 PrivateDestructor pd; // expected-note{{field 'pd' has an inaccessible destructor}
    [all...]

Completed in 247 milliseconds