Home
last modified time | relevance | path

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

/freebsd-head/contrib/llvm-project/libcxx/include/__ranges/
HDmovable_box.h93 operator=(__movable_box&& __other) noexcept(is_nothrow_move_constructible_v<_Tp>) { in noexcept()
131 … ? copyable<_Tp> || (is_nothrow_move_constructible_v<_Tp> && is_nothrow_copy_constructible_v<_Tp>)
134 : movable<_Tp> || is_nothrow_move_constructible_v<_Tp>);
155 concept __doesnt_need_empty_state_for_move = movable<_Tp> || is_nothrow_move_constructible_v<_Tp>;
222 static_assert(is_nothrow_move_constructible_v<_Tp>);
HDzip_view.h412 …(is_nothrow_move_constructible_v<range_rvalue_reference_t<__maybe_const<_Const, _Views>>> && ...))…
/freebsd-head/contrib/llvm-project/libcxx/include/__expected/
HDexpected.h499 is_nothrow_move_constructible_v<_Tp> && is_nothrow_move_constructible_v<_Err>)
607 } else if constexpr (is_nothrow_move_constructible_v<_T1>) {
613 is_nothrow_move_constructible_v<_T2>,
633 (is_nothrow_move_constructible_v<_Tp> || is_nothrow_move_constructible_v<_Err>))
648 …ected&& __rhs) noexcept(is_nothrow_move_assignable_v<_Tp> && is_nothrow_move_constructible_v<_Tp> …
649 … is_nothrow_move_assignable_v<_Err> && is_nothrow_move_constructible_v<_Err>)
652 (is_nothrow_move_constructible_v<_Tp> || is_nothrow_move_constructible_v<_Err>))
670 (is_nothrow_constructible_v<_Tp, _Up> || is_nothrow_move_constructible_v<_Tp> ||
671 is_nothrow_move_constructible_v<_Err>))
733 …swap(expected& __rhs) noexcept(is_nothrow_move_constructible_v<_Tp> && is_nothrow_swappable_v<_Tp>…
[all …]
/freebsd-head/contrib/llvm-project/libcxx/include/__type_traits/
HDis_nothrow_constructible.h108 inline constexpr bool is_nothrow_move_constructible_v = is_nothrow_move_constructible<_Tp>::value; variable
/freebsd-head/contrib/llvm-project/libcxx/include/__concepts/
HDswappable.h95 noexcept(is_nothrow_move_constructible_v<_Tp> && is_nothrow_move_assignable_v<_Tp>) { in operator()
/freebsd-head/contrib/llvm-project/libcxx/include/
HDvariant862 __all<is_nothrow_move_constructible_v<_Types>...>::value)
940 …pl(bool_constant < is_nothrow_constructible_v<_Tp, _Arg> || !is_nothrow_move_constructible_v < _Tp…
990 …__all<(is_nothrow_move_constructible_v<_Types> && is_nothrow_move_assignable_v<_Types>)...>::value…
1075 if constexpr (__all<is_nothrow_move_constructible_v<_Types>...>::value) {
1101 constexpr bool __results[] = {is_nothrow_move_constructible_v<_Types>...};
1308 … __all<(is_nothrow_move_constructible_v<_Types> && is_nothrow_swappable_v<_Types>)...>::value) {
HDoptional493 …__optional_move_base(__optional_move_base&& __opt) noexcept(is_nothrow_move_constructible_v<value_…
544 is_nothrow_move_assignable_v<value_type> && is_nothrow_move_constructible_v<value_type>) {
773 …swap(optional& __opt) noexcept(is_nothrow_move_constructible_v<value_type> && is_nothrow_swappable…
HDarray494 to_array(_Tp (&&__arr)[_Size]) noexcept(is_nothrow_move_constructible_v<_Tp>) {
HDtype_traits362 template <class T> inline constexpr bool is_nothrow_move_constructible_v
/freebsd-head/contrib/llvm-project/libcxx/modules/std/
HDtype_traits.inc256 using std::is_nothrow_move_constructible_v;
/freebsd-head/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
HDStdSymbolMap.inc1712 SYMBOL(is_nothrow_move_constructible_v, std::, <type_traits>)