Home
last modified time | relevance | path

Searched refs:is_move_constructible_v (Results 1 – 14 of 14) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/__functional/
H A Dbind_back.h54 requires is_constructible_v<decay_t<_Fn>, _Fn> && is_move_constructible_v<decay_t<_Fn>> &&
55 …(is_constructible_v<decay_t<_Args>, _Args> && ...) && (is_move_constructible_v<decay_t<_Args>> && …
69 …static_assert(is_move_constructible_v<decay_t<_Fn>>, "bind_back requires decay_t<F> to be move con…
72 static_assert((is_move_constructible_v<decay_t<_Args>> && ...),
H A Dbind_front.h44 requires is_constructible_v<decay_t<_Fn>, _Fn> && is_move_constructible_v<decay_t<_Fn>> &&
45 …(is_constructible_v<decay_t<_Args>, _Args> && ...) && (is_move_constructible_v<decay_t<_Args>> && …
H A Dnot_fn.h44 …class = enable_if_t< is_constructible_v<decay_t<_Fn>, _Fn> && is_move_constructible_v<decay_t<_Fn>…
/freebsd/contrib/llvm-project/libcxx/include/__expected/
H A Dexpected.h223 requires(is_move_constructible_v<_Tp> && is_move_constructible_v<_Err> &&
301 requires(is_move_constructible_v<_Tp> && is_move_constructible_v<_Err> &&
494 …requires(is_move_constructible_v<_Tp> && is_move_constructible_v<_Err> && is_trivially_move_constr…
500 requires(is_move_constructible_v<_Tp> && is_move_constructible_v<_Err> &&
650 …requires(is_move_constructible_v<_Tp> && is_move_assignable_v<_Tp> && is_move_constructible_v<_Err…
735 requires(is_swappable_v<_Tp> && is_swappable_v<_Err> && is_move_constructible_v<_Tp> &&
736 is_move_constructible_v<_Err> &&
893 static_assert(is_move_constructible_v<_Tp>, "value_type has to be move constructible");
909 static_assert(is_move_constructible_v<_Err>, "error_type has to be move constructible");
1179 requires(is_move_constructible_v<_Err> && is_trivially_move_constructible_v<_Err>)
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__type_traits/
H A Dis_constructible.h46 inline constexpr bool is_move_constructible_v = is_move_constructible<_Tp>::value; variable
/freebsd/contrib/llvm-project/libcxx/include/__iterator/
H A Dcpp17_iterator_concepts.h38 concept __cpp17_move_constructible = is_move_constructible_v<_Tp>;
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dtype_traits.cppm
/freebsd/contrib/llvm-project/libcxx/include/
H A Doptional857 …static_assert(is_move_constructible_v<value_type>, "optional<T>::value_or: T must be move construc…
964 requires is_move_constructible_v<value_type>
1249 _LIBCPP_CONSTEXPR_SINCE_CXX20 enable_if_t< is_move_constructible_v<_Tp> && is_swappable_v<_Tp>, voi…
H A Darray496 …static_assert(is_move_constructible_v<_Tp>, "[array.creation]/4: to_array requires move constructi…
H A Dtype_traits326 template <class T> inline constexpr bool is_move_constructible_v
H A Dvariant1169 __all<is_move_constructible_v<_Types>...>::value>,
1172 __all<(is_move_constructible_v<_Types> && is_move_assignable_v<_Types>)...>::value> {
/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-actions_test.cc233 static_assert(!std::is_move_constructible_v<NonMoveable>); in TEST()
H A Dgmock-spec-builders_test.cc823 static_assert(!std::is_move_constructible_v<NonMoveableStruct>); in TEST()
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DStdSymbolMap.inc1689 SYMBOL(is_move_constructible_v, std::, <type_traits>)