Home
last modified time | relevance | path

Searched defs:CopyConstructible (Results 1 – 2 of 2) sorted by relevance

/external/cronet/buildtools/third_party/libc++/trunk/test/libcxx/ranges/range.nonprop.cache/
Dctor.copy.pass.cpp19 struct CopyConstructible { struct
21 constexpr explicit CopyConstructible(int i) : x(i) { } in CopyConstructible() function
22 …constexpr CopyConstructible(CopyConstructible const& other) noexcept(NoexceptCopy) : x(other.x) { } in CopyConstructible() function
24 constexpr bool operator==(CopyConstructible const& other) const { return x == other.x; } in operator ==() argument
/external/cronet/buildtools/third_party/libc++/trunk/test/libcxx/ranges/range.adaptors/range.copy.wrap/
Dtypes.h23 struct CopyConstructible { struct
25 constexpr explicit CopyConstructible(int x) : value(x) { } in CopyConstructible() function
27 CopyConstructible& operator=(CopyConstructible const&) = delete; argument
31 static_assert(!std::copyable<CopyConstructible>); argument