Home
last modified time | relevance | path

Searched refs:is_move_constructible_v (Results 1 – 19 of 19) 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.h46 …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.h227 requires(is_move_constructible_v<_Tp> && is_move_constructible_v<_Err> &&
305 requires(is_move_constructible_v<_Tp> && is_move_constructible_v<_Err> &&
500 …requires(is_move_constructible_v<_Tp> && is_move_constructible_v<_Err> && is_trivially_move_constr…
506 requires(is_move_constructible_v<_Tp> && is_move_constructible_v<_Err> &&
655 …requires(is_move_constructible_v<_Tp> && is_move_assignable_v<_Tp> && is_move_constructible_v<_Err…
740 requires(is_swappable_v<_Tp> && is_swappable_v<_Err> && is_move_constructible_v<_Tp> &&
741 is_move_constructible_v<_Err> &&
898 static_assert(is_move_constructible_v<_Tp>, "value_type has to be move constructible");
914 static_assert(is_move_constructible_v<_Err>, "error_type has to be move constructible");
1203 requires(is_move_constructible_v<_Err> && is_trivially_move_constructible_v<_Err>)
[all …]
/freebsd/contrib/llvm-project/libc/src/__support/CPP/type_traits/
H A Dis_move_constructible.h25 LIBC_INLINE_VAR constexpr bool is_move_constructible_v = variable
/freebsd/contrib/llvm-project/libcxx/include/__type_traits/
H A Dis_constructible.h45 _LIBCPP_NO_SPECIALIZATIONS inline constexpr bool is_move_constructible_v = is_move_constructible<_T… variable
/freebsd/contrib/llvm-project/libc/src/__support/CPP/
H A Datomic.h68 is_move_constructible_v<T> && is_copy_assignable_v<T> &&
261 is_move_constructible_v<T> && is_copy_assignable_v<T> &&
/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
H A Dtype_traits.inc261 using std::is_move_constructible_v;
/freebsd/contrib/llvm-project/libcxx/include/__flat_map/
H A Dflat_multimap.h440 …requires is_constructible_v<pair<key_type, mapped_type>, _Args...> && is_move_constructible_v<key_…
441 is_move_constructible_v<mapped_type>
/freebsd/contrib/llvm-project/libcxx/include/
H A Doptional863 …static_assert(is_move_constructible_v<value_type>, "optional<T>::value_or: T must be move construc…
970 requires is_move_constructible_v<value_type>
1266 template <class _Tp, enable_if_t< is_move_constructible_v<_Tp> && is_swappable_v<_Tp>, int> = 0>
H A Darray555 …static_assert(is_move_constructible_v<_Tp>, "[array.creation]/4: to_array requires move constructi…
H A Dtype_traits355 template <class T> inline constexpr bool is_move_constructible_v
H A Dvariant1158 __all<is_move_constructible_v<_Types>...>::value>,
1161 __all<(is_move_constructible_v<_Types> && is_move_assignable_v<_Types>)...>::value> {
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/
H A Dtype_traits326 template <class T> inline constexpr bool is_move_constructible_v
/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.cc822 static_assert(!std::is_move_constructible_v<NonMoveableStruct>); in TEST()
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DStdSymbolMap.inc1718 SYMBOL(is_move_constructible_v, std::, <type_traits>)