Home
last modified time | relevance | path

Searched refs:CustomMoveAssign (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/concepts/concepts.lang/concept.moveconstructible/
H A Dmove_constructible.compile.pass.cpp38 static_assert(std::move_constructible<CustomMoveAssign>);
39 static_assert(std::move_constructible<const CustomMoveAssign&>);
40 static_assert(std::move_constructible<volatile CustomMoveAssign&>);
41 static_assert(std::move_constructible<const CustomMoveAssign&&>);
42 static_assert(std::move_constructible<volatile CustomMoveAssign&&>);
51 static_assert(!std::move_constructible<const CustomMoveAssign>);
52 static_assert(!std::move_constructible<volatile CustomMoveAssign>);
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/concepts/concepts.lang/concept.copyconstructible/
H A Dcopy_constructible.compile.pass.cpp35 static_assert(std::copy_constructible<const CustomMoveAssign&>);
36 static_assert(std::copy_constructible<volatile CustomMoveAssign&>);
42 static_assert(!std::copy_constructible<CustomMoveAssign>);
45 static_assert(!std::copy_constructible<const CustomMoveAssign>);
46 static_assert(!std::copy_constructible<volatile CustomMoveAssign>);
70 static_assert(!std::copy_constructible<const CustomMoveAssign&&>);
71 static_assert(!std::copy_constructible<volatile CustomMoveAssign&&>);
/aosp_15_r20/external/cronet/third_party/libc++/src/test/support/type_classification/
H A Dmoveconstructible.h25 struct CustomMoveAssign { struct
26 CustomMoveAssign(CustomMoveAssign&&) noexcept;
27 CustomMoveAssign& operator=(CustomMoveAssign&&) noexcept; argument