Searched refs:_Cat (Results 1 – 5 of 5) sorted by relevance
| /src/contrib/llvm-project/libcxx/include/__compare/ |
| H A D | three_way_comparable.h | 30 template <class _Tp, class _Cat> 31 concept __compares_as = same_as<common_comparison_category_t<_Tp, _Cat>, _Cat>; 33 template <class _Tp, class _Cat = partial_ordering> 37 { __a <=> __b } -> __compares_as<_Cat>; in requires() 40 template <class _Tp, class _Up, class _Cat = partial_ordering> 42 three_way_comparable<_Tp, _Cat> && three_way_comparable<_Up, _Cat> && 44 …comparable<common_reference_t<__make_const_lvalue_ref<_Tp>, __make_const_lvalue_ref<_Up>>, _Cat> && 47 { __t <=> __u } -> __compares_as<_Cat>; in requires() 48 { __u <=> __t } -> __compares_as<_Cat>; in requires()
|
| /src/contrib/llvm-project/libcxx/src/support/ibm/ |
| H A D | xlocale_zos.cpp | 27 for (int _Cat = 0; _Cat <= _LC_MAX; ++_Cat) { in newlocale() local 28 if ((_CATMASK(_Cat) & category_mask) != 0 && setlocale(_Cat, locale) == NULL) { in newlocale()
|
| /src/contrib/llvm-project/libcxx/include/__ranges/ |
| H A D | filter_view.h | 118 using _Cat = typename iterator_traits<iterator_t<_View>>::iterator_category; 120 _If<derived_from<_Cat, bidirectional_iterator_tag>, 122 _If<derived_from<_Cat, forward_iterator_tag>, 124 /* else */ _Cat >>;
|
| H A D | elements_view.h | 147 using _Cat = typename iterator_traits<iterator_t<_Base>>::iterator_category; 151 } else if constexpr (derived_from<_Cat, random_access_iterator_tag>) { 154 return _Cat{};
|
| H A D | transform_view.h | 161 using _Cat = typename iterator_traits<iterator_t<_View>>::iterator_category; 165 … conditional_t< derived_from<_Cat, contiguous_iterator_tag>, random_access_iterator_tag, _Cat >,
|