Home
last modified time | relevance | path

Searched refs:remove_cv_t (Results 1 – 25 of 30) sorted by relevance

12

/freebsd/contrib/llvm-project/libcxx/include/__iterator/
H A Dreadable_traits.h38 using value_type = remove_cv_t<_Tp>;
53 using value_type = remove_cv_t<remove_extent_t<_Ip>>;
74 same_as<remove_cv_t<typename _Tp::element_type>, remove_cv_t<typename _Tp::value_type>>
H A Dconcepts.h119 sentinel_for<_Sp, _Ip> && !disable_sized_sentinel_for<remove_cv_t<_Sp>, remove_cv_t<_Ip>> &&
/freebsd/contrib/llvm-project/libcxx/include/__ranges/
H A Drange_adaptor.h47 requires is_class_v<_Tp> && same_as<_Tp, remove_cv_t<_Tp>>
84 requires is_class_v<_Tp> && same_as<_Tp, remove_cv_t<_Tp>>
89 requires is_class_v<_Tp> && same_as<_Tp, remove_cv_t<_Tp>>
H A Denable_view.h33 requires is_class_v<_Derived> && same_as<_Derived, remove_cv_t<_Derived>>
H A Drepeat_view.h74 requires(is_object_v<_Tp> && same_as<_Tp, remove_cv_t<_Tp>> &&
136 requires(is_object_v<_Tp> && same_as<_Tp, remove_cv_t<_Tp>> &&
H A Dview_interface.h40 requires is_class_v<_Derived> && same_as<_Derived, remove_cv_t<_Derived>>
H A Delements_view.h182 using _Element = remove_cv_t<tuple_element_t<_Np, range_reference_t<_Base>>>;
/freebsd/contrib/llvm-project/libcxx/include/__memory/
H A Duses_allocator_construction.h41 inline constexpr bool __is_cv_std_pair = __is_std_pair<remove_cv_t<_Tp>>;
46 …if constexpr (!uses_allocator_v<remove_cv_t<_Type>, _Alloc> && is_constructible_v<_Type, _Args...>… in __uses_allocator_construction_args()
48 } else if constexpr (uses_allocator_v<remove_cv_t<_Type>, _Alloc> && in __uses_allocator_construction_args()
51 } else if constexpr (uses_allocator_v<remove_cv_t<_Type>, _Alloc> && in __uses_allocator_construction_args()
185 using _PairMutable = remove_cv_t<_Pair>; in __uses_allocator_construction_args()
/freebsd/contrib/llvm-project/libcxx/include/__expected/
H A Dexpected.h448 …static_assert(!is_reference_v<_Tp> && !is_function_v<_Tp> && !is_same_v<remove_cv_t<_Tp>, in_place…
449 … !is_same_v<remove_cv_t<_Tp>, unexpect_t> && !__is_std_unexpected<remove_cv_t<_Tp>>::value &&
509 _If<_Not<is_same<remove_cv_t<_Tp>, bool>>::value,
556 (!is_same_v<remove_cv_t<_Tp>, bool> || !__is_std_expected<remove_cvref_t<_Up>>::value))
1028 using _Up = remove_cv_t<invoke_result_t<_Func, _Tp&>>;
1044 using _Up = remove_cv_t<invoke_result_t<_Func, const _Tp&>>;
1060 using _Up = remove_cv_t<invoke_result_t<_Func, _Tp&&>>;
1076 using _Up = remove_cv_t<invoke_result_t<_Func, const _Tp&&>>;
1092 using _Gp = remove_cv_t<invoke_result_t<_Func, _Err&>>;
1104 using _Gp = remove_cv_t<invoke_result_t<_Func, const _Err&>>;
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__type_traits/
H A Dremove_cv.h42 using remove_cv_t = __remove_cv_t<_Tp>; variable
/freebsd/contrib/llvm-project/libcxx/include/__string/
H A Dconstexpr_c_functions.h138 if constexpr (is_same_v<remove_cv_t<_Tp>, char> && is_same_v<remove_cv_t<_Up>, char>) in __constexpr_memchr()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSTLForwardCompat.h32 using type = std::remove_cv_t<std::remove_reference_t<T>>;
H A DDenseMapInfoVariant.h61 using T = std::remove_cv_t<std::remove_reference_t<decltype(RHS)>>;
H A DTypeSwitch.h56 using CaseT = std::remove_cv_t<std::remove_pointer_t< in Case()
H A DSequence.h292 static_assert(std::is_same<T, std::remove_cv_t<T>>::value,
/freebsd/contrib/llvm-project/libcxx/include/
H A Darray97 constexpr array<remove_cv_t<T>, N> to_array(T (&a)[N]); // C++20
99 constexpr array<remove_cv_t<T>, N> to_array(T (&&a)[N]); // C++20
473 _LIBCPP_HIDE_FROM_ABI constexpr array<remove_cv_t<_Tp>, _Size>
479 _LIBCPP_HIDE_FROM_ABI constexpr array<remove_cv_t<_Tp>, _Size>
485 _LIBCPP_HIDE_FROM_ABI constexpr array<remove_cv_t<_Tp>, _Size>
493 _LIBCPP_HIDE_FROM_ABI constexpr array<remove_cv_t<_Tp>, _Size>
H A Dranges98 requires is_class_v<D> && same_as<D, remove_cv_t<D>>
103 requires is_class_v<D> && same_as<D, remove_cv_t<D>>
276 requires (is_object_v<T> && same_as<T, remove_cv_t<T>> &&
H A Dspan60 using value_type = remove_cv_t<ElementType>;
232 using value_type = remove_cv_t<_Tp>;
413 using value_type = remove_cv_t<_Tp>;
H A Doptional611 … (!is_same_v<remove_cv_t<_Tp>, bool> || !__is_std_optional<__remove_cvref_t<_Up>>::value),
635 (is_same_v<remove_cv_t<_Tp>, bool> || !__check_constructible_from_opt<_Up>::value);
640 (is_same_v<remove_cv_t<_Tp>, bool> || !__check_constructible_from_opt<_Up>::value);
905 using _Up = remove_cv_t<invoke_result_t<_Func, value_type&>>;
917 using _Up = remove_cv_t<invoke_result_t<_Func, const value_type&>>;
929 using _Up = remove_cv_t<invoke_result_t<_Func, value_type&&>>;
H A Dcwchar246 else if constexpr (is_same_v<remove_cv_t<_Tp>, wchar_t>)
H A Dmdspan284 using value_type = remove_cv_t<element_type>;
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DAllocatorBase.h81 std::enable_if_t<!std::is_same_v<std::remove_cv_t<T>, void>, void>
H A DFormatVariadicDetails.h150 !std::is_same_v<llvm::Error, std::remove_cv_t<T>>, in build_format_adapter()
/freebsd/contrib/llvm-project/libcxx/include/__mdspan/
H A Dmdspan.h84 using value_type = remove_cv_t<element_type>;
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dtype_traits.cppm

12