Home
last modified time | relevance | path

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

/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.apply/
Dmake_from_tuple.pass.cpp163 struct NothrowMoveable { in test_noexcept() struct
164 NothrowMoveable() = default; in test_noexcept()
165 NothrowMoveable(NothrowMoveable const&) {} in test_noexcept() argument
166 NothrowMoveable(NothrowMoveable&&) noexcept {} in test_noexcept() function
169 TestType(int, NothrowMoveable) noexcept {} in test_noexcept()
174 using Tuple = std::tuple<int, NothrowMoveable>; in test_noexcept()
181 using Tuple = std::pair<int, NothrowMoveable>; in test_noexcept()
Dapply.pass.cpp181 struct NothrowMoveable { struct
182 NothrowMoveable() noexcept = default;
183 NothrowMoveable(NothrowMoveable const&) noexcept(false) {} in NothrowMoveable() argument
184 NothrowMoveable(NothrowMoveable&&) noexcept {} in NothrowMoveable() argument
190 NothrowMoveable operator()(Args...) const noexcept(IsNoexcept) { return {}; } in operator ()()
206 using Tup = std::tuple<NothrowMoveable, int>; in test_noexcept()
/external/libcxx/test/std/utilities/variant/variant.variant/variant.swap/
Dswap.pass.cpp124 using NothrowMoveable = NothrowTypeImp<false, true, false, true, false, false>; typedef
245 using T = NothrowMoveable; in test_swap_same_alternative()
432 using T2 = NothrowMoveable; in test_swap_different_alternatives()
514 using V = std::variant<int, NothrowMoveable>; in test_swap_noexcept()