Searched refs:_ValueT (Results 1 – 8 of 8) sorted by relevance
| /src/contrib/llvm-project/libcxx/include/__algorithm/ |
| H A D | ranges_minmax.h | 84 using _ValueT = range_value_t<_Range>; local 90 if constexpr (contiguous_range<_Range> && is_integral_v<_ValueT> && 91 __is_cheap_to_copy<_ValueT> & __is_identity<_Proj>::value && 92 __desugars_to_v<__less_tag, _Comp, _ValueT, _ValueT>) { 93 minmax_result<_ValueT> __result = {__r[0], __r[0]}; 105 if constexpr (!same_as<remove_cvref_t<range_reference_t<_Range>>, _ValueT> || 110 minmax_result<_ValueT> __result = {*__first, __result.min}; 127 ranges::minmax_result<_ValueT> __result = {*__first, __result.min}; 137 _ValueT __i = *__first;
|
| /src/contrib/llvm-project/libcxx/include/__compare/ |
| H A D | ordering.h | 44 using _ValueT = signed char; variable 46 …E_FROM_ABI explicit constexpr partial_ordering(_OrdResult __v) noexcept : __value_(_ValueT(__v)) {} in partial_ordering() 48 …_FROM_ABI explicit constexpr partial_ordering(_NCmpResult __v) noexcept : __value_(_ValueT(__v)) {} in partial_ordering() 51 return __value_ != _ValueT(_NCmpResult::__unordered); in __is_ordered() 111 _ValueT __value_; 120 using _ValueT = signed char; variable 122 …HIDE_FROM_ABI explicit constexpr weak_ordering(_OrdResult __v) noexcept : __value_(_ValueT(__v)) {} in weak_ordering() 182 _ValueT __value_; 190 using _ValueT = signed char; variable 192 …DE_FROM_ABI explicit constexpr strong_ordering(_OrdResult __v) noexcept : __value_(_ValueT(__v)) {} in strong_ordering() [all …]
|
| /src/contrib/llvm-project/libcxx/include/ |
| H A D | map | 2159 template <class _KeyT, class _ValueT, class _CompareT = std::less<_KeyT>> 2161 std::map<_KeyT, _ValueT, _CompareT, polymorphic_allocator<std::pair<const _KeyT, _ValueT>>>; 2163 template <class _KeyT, class _ValueT, class _CompareT = std::less<_KeyT>> 2165 … std::multimap<_KeyT, _ValueT, _CompareT, polymorphic_allocator<std::pair<const _KeyT, _ValueT>>>;
|
| H A D | unordered_map | 2519 template <class _KeyT, class _ValueT, class _HashT = std::hash<_KeyT>, class _PredT = std::equal_to… 2521 …std::unordered_map<_KeyT, _ValueT, _HashT, _PredT, polymorphic_allocator<std::pair<const _KeyT, _V… 2523 template <class _KeyT, class _ValueT, class _HashT = std::hash<_KeyT>, class _PredT = std::equal_to… 2525 …std::unordered_multimap<_KeyT, _ValueT, _HashT, _PredT, polymorphic_allocator<std::pair<const _Key…
|
| H A D | forward_list | 1552 template <class _ValueT> 1553 …forward_list _LIBCPP_AVAILABILITY_PMR = std::forward_list<_ValueT, polymorphic_allocator<_ValueT>>;
|
| H A D | list | 1721 template <class _ValueT> 1722 using list _LIBCPP_AVAILABILITY_PMR = std::list<_ValueT, polymorphic_allocator<_ValueT>>;
|
| H A D | deque | 2601 template <class _ValueT> 2602 using deque _LIBCPP_AVAILABILITY_PMR = std::deque<_ValueT, polymorphic_allocator<_ValueT>>;
|
| H A D | vector | 3008 template <class _ValueT> 3009 using vector _LIBCPP_AVAILABILITY_PMR = std::vector<_ValueT, polymorphic_allocator<_ValueT>>;
|