Home
last modified time | relevance | path

Searched refs:is_copy_constructible_v (Results 1 – 11 of 11) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/__expected/
H A Dexpected.h218 requires(is_copy_constructible_v<_Tp> && is_copy_constructible_v<_Err> &&
296 requires(is_copy_constructible_v<_Tp> && is_copy_constructible_v<_Err> &&
483 …requires(is_copy_constructible_v<_Tp> && is_copy_constructible_v<_Err> && is_trivially_copy_constr…
489 requires(is_copy_constructible_v<_Tp> && is_copy_constructible_v<_Err> &&
631 …requires(is_copy_assignable_v<_Tp> && is_copy_constructible_v<_Tp> && is_copy_assignable_v<_Err> &&
632 is_copy_constructible_v<_Err> &&
827 static_assert(is_copy_constructible_v<_Err>, "error_type has to be copy constructible");
835 static_assert(is_copy_constructible_v<_Err>, "error_type has to be copy constructible");
843 …static_assert(is_copy_constructible_v<_Err> && is_constructible_v<_Err, decltype(std::move(error()…
852 …static_assert(is_copy_constructible_v<_Err> && is_constructible_v<_Err, decltype(std::move(error()…
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/
H A Dlexicographical_compare_three_way.h98 …static_assert(std::is_copy_constructible_v<_InputIterator1>, "Iterators must be copy constructible…
99 …static_assert(std::is_copy_constructible_v<_InputIterator2>, "Iterators must be copy constructible…
/freebsd/contrib/llvm-project/libcxx/include/__type_traits/
H A Dis_constructible.h37 inline constexpr bool is_copy_constructible_v = is_copy_constructible<_Tp>::value; variable
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DMapVector.h111 static_assert(std::is_copy_constructible_v<ValueT>, in lookup()
/freebsd/contrib/llvm-project/libcxx/include/__iterator/
H A Dcpp17_iterator_concepts.h41 concept __cpp17_copy_constructible = __cpp17_move_constructible<_Tp> && is_copy_constructible_v<_Tp…
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dtype_traits.cppm
/freebsd/contrib/llvm-project/libcxx/include/
H A Dtype_traits324 template <class T> inline constexpr bool is_copy_constructible_v
H A Doptional850 …static_assert(is_copy_constructible_v<value_type>, "optional<T>::value_or: T must be copy construc…
953 requires is_copy_constructible_v<value_type>
H A Dvariant1168 : private __sfinae_ctor_base< __all<is_copy_constructible_v<_Types>...>::value,
1171 __all<(is_copy_constructible_v<_Types> && is_copy_assignable_v<_Types>)...>::value,
/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-spec-builders_test.cc824 static_assert(!std::is_copy_constructible_v<NonMoveableStruct>); in TEST()
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DStdSymbolMap.inc1638 SYMBOL(is_copy_constructible_v, std::, <type_traits>)