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

  /external/clang/test/CXX/special/class.copy/
implicit-move.cpp 68 struct PrivateMove {
69 PrivateMove() noexcept;
70 PrivateMove(const PrivateMove &) noexcept(false);
71 PrivateMove & operator =(const PrivateMove &) noexcept(false);
73 PrivateMove(PrivateMove &&) noexcept;
74 PrivateMove & operator =(PrivateMove &&) noexcept
    [all...]
p12-0x.cpp 149 struct PrivateMove {
150 PrivateMove(const PrivateMove &) = default;
152 PrivateMove(PrivateMove &&);
155 static_assert(__is_trivially_constructible(PrivateMove, const PrivateMove &), "");
156 static_assert(!__is_trivially_constructible(PrivateMove, PrivateMove &&), "");
159 PrivateMove pm
    [all...]
p25-0x.cpp 172 struct PrivateMove {
173 PrivateMove &operator=(const PrivateMove &) = default;
175 PrivateMove &operator=(PrivateMove &&);
178 static_assert(__is_trivially_assignable(PrivateMove, const PrivateMove &), "");
179 static_assert(!__is_trivially_assignable(PrivateMove, PrivateMove &&), "");
182 PrivateMove pm
    [all...]

Completed in 462 milliseconds