Home
last modified time | relevance | path

Searched defs:MoveConstructible (Results 1 – 5 of 5) sorted by relevance

/aosp_15_r20/external/cronet/third_party/libc++/src/test/libcxx/ranges/range.nonprop.cache/
H A Dctor.move.pass.cpp20 struct MoveConstructible { struct
22 constexpr explicit MoveConstructible(int i) : x(i) { } in MoveConstructible() argument
23 …constexpr MoveConstructible(MoveConstructible&& other) noexcept(NoexceptMove) : x(other.x) { other… in MoveConstructible() argument
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/utilities/function.objects/func.bind_front/
H A Dbind_front.pass.cpp58 struct MoveConstructible { struct
59 explicit MoveConstructible() {} in MoveConstructible() argument
60 MoveConstructible(MoveConstructible&&) {} in MoveConstructible() argument
/aosp_15_r20/external/cronet/third_party/libc++/src/test/libcxx/utilities/function.objects/func.bind.partial/
H A Dbind_back.pass.cpp61 struct MoveConstructible { struct
62 explicit MoveConstructible() {} in MoveConstructible() argument
63 MoveConstructible(MoveConstructible&&) {} in MoveConstructible() function
/aosp_15_r20/external/cronet/third_party/libc++/src/test/libcxx/strings/c.strings/
H A Dconstexpr_memmove.pass.cpp43 struct MoveConstructible { struct
47 MoveConstructible(const MoveConstructible&) = delete; argument
/aosp_15_r20/external/cronet/net/third_party/quiche/src/quiche/common/
H A Dquiche_circular_deque_test.cc586 using MoveConstructible = std::unique_ptr<Foo>; in TEST_F() typedef