Searched refs:is_move_constructible_v (Results 1 – 14 of 14) sorted by relevance
/freebsd/contrib/llvm-project/libcxx/include/__functional/ |
H A D | bind_back.h | 54 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 D | bind_front.h | 44 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 D | not_fn.h | 44 …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 D | expected.h | 223 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 D | is_constructible.h | 46 inline constexpr bool is_move_constructible_v = is_move_constructible<_Tp>::value; variable
|
/freebsd/contrib/llvm-project/libcxx/include/__iterator/ |
H A D | cpp17_iterator_concepts.h | 38 concept __cpp17_move_constructible = is_move_constructible_v<_Tp>;
|
/freebsd/contrib/llvm-project/libcxx/modules/std/ |
H A D | type_traits.cppm |
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | optional | 857 …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 D | array | 496 …static_assert(is_move_constructible_v<_Tp>, "[array.creation]/4: to_array requires move constructi…
|
H A D | type_traits | 326 template <class T> inline constexpr bool is_move_constructible_v
|
H A D | variant | 1169 __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 D | gmock-actions_test.cc | 233 static_assert(!std::is_move_constructible_v<NonMoveable>); in TEST()
|
H A D | gmock-spec-builders_test.cc | 823 static_assert(!std::is_move_constructible_v<NonMoveableStruct>); in TEST()
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/ |
H A D | StdSymbolMap.inc | 1689 SYMBOL(is_move_constructible_v, std::, <type_traits>)
|