Searched refs:is_copy_constructible_v (Results 1 – 11 of 11) sorted by relevance
/freebsd/contrib/llvm-project/libcxx/include/__expected/ |
H A D | expected.h | 218 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 D | lexicographical_compare_three_way.h | 98 …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 D | is_constructible.h | 37 inline constexpr bool is_copy_constructible_v = is_copy_constructible<_Tp>::value; variable
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | MapVector.h | 111 static_assert(std::is_copy_constructible_v<ValueT>, in lookup()
|
/freebsd/contrib/llvm-project/libcxx/include/__iterator/ |
H A D | cpp17_iterator_concepts.h | 41 concept __cpp17_copy_constructible = __cpp17_move_constructible<_Tp> && is_copy_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 | type_traits | 324 template <class T> inline constexpr bool is_copy_constructible_v
|
H A D | optional | 850 …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 D | variant | 1168 : 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 D | gmock-spec-builders_test.cc | 824 static_assert(!std::is_copy_constructible_v<NonMoveableStruct>); in TEST()
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/ |
H A D | StdSymbolMap.inc | 1638 SYMBOL(is_copy_constructible_v, std::, <type_traits>)
|