Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/libcxx/include/__format/
H A Dformat_string.h31 template <contiguous_iterator _Iterator>
33 _Iterator __last;
37 template <contiguous_iterator _Iterator>
38 __parse_number_result(_Iterator, uint32_t) -> __parse_number_result<_Iterator>;
40 template <contiguous_iterator _Iterator>
41 …PP_HIDE_FROM_ABI constexpr __parse_number_result<_Iterator> __parse_number(_Iterator __begin, _Ite…
59 __parse_zero(_Iterator __begin, _Iterator, auto& __parse_ctx) { in __parse_zero() argument
66 __parse_automatic(_Iterator __begin, _Iterator, auto& __parse_ctx) { in __parse_automatic() argument
75 __parse_manual(_Iterator __begin, _Iterator __end, auto& __parse_ctx) { in __parse_manual()
91 __parse_number(_Iterator __begin, _Iterator __end_input) { in __parse_number()
[all …]
H A Dunicode.h127 _LIBCPP_HIDE_FROM_ABI constexpr explicit __code_point_view(_Iterator __first, _Iterator __last) in __code_point_view()
232 _Iterator __first_;
233 _Iterator __last_;
255 _LIBCPP_HIDE_FROM_ABI constexpr explicit __code_point_view(_Iterator __first, _Iterator __last) in __code_point_view()
290 _Iterator __first_;
291 _Iterator __last_;
400 _Iterator __last_;
444 __extended_grapheme_cluster_view(_Iterator, _Iterator) -> __extended_grapheme_cluster_view<iter_val…
455 _LIBCPP_HIDE_FROM_ABI constexpr explicit __code_point_view(_Iterator __first, _Iterator __last) in __code_point_view()
467 _Iterator __first_;
[all …]
H A Dparser_std_format_spec.h68 __parse_arg_id(_Iterator __begin, _Iterator __end, _ParseContext& __ctx) { in __parse_arg_id()
69 using _CharT = iter_value_t<_Iterator>; in __parse_arg_id()
719 …_LIBCPP_HIDE_FROM_ABI constexpr bool __parse_width(_Iterator& __begin, _Iterator __end, auto& __ct…
744 …_LIBCPP_HIDE_FROM_ABI constexpr bool __parse_precision(_Iterator& __begin, _Iterator __end, auto& …
1008 template <contiguous_iterator _Iterator>
1015 _Iterator __last_;
1018 template <contiguous_iterator _Iterator>
1019 __column_width_result(size_t, _Iterator) -> __column_width_result<_Iterator>;
1035 template <contiguous_iterator _Iterator>
1037_Iterator __first, _Iterator __last, size_t __maximum, __column_width_rounding __rounding) noexcep…
[all …]
H A Dformatter_output.h116 template <contiguous_iterator _Iterator,
119 _LIBCPP_HIDE_FROM_ABI auto __copy(_Iterator __first, _Iterator __last, output_iterator<const _OutCh…
124 template <contiguous_iterator _Iterator,
135 template <contiguous_iterator _Iterator,
247 __write(_Iterator __first,
248 _Iterator __last,
261 __write(_Iterator __first,
262 _Iterator __last,
269 template <contiguous_iterator _Iterator,
274 _Iterator __first,
[all …]
H A Dformatter_integral.h55 template <contiguous_iterator _Iterator>
56 requires same_as<char, iter_value_t<_Iterator>>
57 _LIBCPP_HIDE_FROM_ABI inline _Iterator __insert_sign(_Iterator __buf, bool __negative, __format_spe… in __insert_sign()
157 requires same_as<char, iter_value_t<_Iterator>>
158 _LIBCPP_HIDE_FROM_ABI _Iterator __to_buffer(_Iterator __first, _Iterator __last, _Tp __value, int _… in __to_buffer()
213 requires same_as<char, iter_value_t<_Iterator>>
216 _Iterator __begin, in __write_using_decimal_separators()
217 _Iterator __first, in __write_using_decimal_separators()
218 _Iterator __last, in __write_using_decimal_separators()
289 _Iterator __begin, in __format_integer()
[all …]
H A Dbuffer.h133 template <contiguous_iterator _Iterator,
135 __fmt_char_type _InCharT = typename iterator_traits<_Iterator>::value_type>
136 …_LIBCPP_HIDE_FROM_ABI void __transform(_Iterator __first, _Iterator __last, _UnaryOperation __oper… in __transform()
595 template <contiguous_iterator _Iterator,
597 __fmt_char_type _InCharT = typename iterator_traits<_Iterator>::value_type>
598 …_LIBCPP_HIDE_FROM_ABI void __transform(_Iterator __first, _Iterator __last, _UnaryOperation __oper…
H A Drange_formatter.h212 template <contiguous_iterator _Iterator>
213 _LIBCPP_HIDE_FROM_ABI constexpr void __parse_type(_Iterator& __begin, _Iterator __end) { in __parse_type()
H A Dformat_functions.h245 template <contiguous_iterator _Iterator, class _ParseCtx, class _Ctx>
246 _LIBCPP_HIDE_FROM_ABI constexpr _Iterator
247 __handle_replacement_field(_Iterator __begin, _Iterator __end, _ParseCtx& __parse_ctx, _Ctx& __ctx)… in __handle_replacement_field()
248 using _CharT = iter_value_t<_Iterator>; in __handle_replacement_field()
/freebsd-14.2/contrib/llvm-project/libcxx/include/__iterator/
H A Dbounded_iter.h41 template <class _Iterator, class = __enable_if_t< __libcpp_is_contiguous_iterator<_Iterator>::value…
43 using value_type = typename iterator_traits<_Iterator>::value_type;
45 using pointer = typename iterator_traits<_Iterator>::pointer;
46 using reference = typename iterator_traits<_Iterator>::reference;
82 _Iterator __current, _Iterator __begin, _Iterator __end) in __bounded_iter()
207 _Iterator __current_; // current iterator
208 _Iterator __begin_, __end_; // valid range represented as [begin, end)
217 template <class _Iterator>
221 template <class _Iterator>
222 struct pointer_traits<__bounded_iter<_Iterator> > {
[all …]
H A Diterator_with_data.h34 template <forward_iterator _Iterator, class _Data>
36 _Iterator __iter_{};
40 using value_type = iter_value_t<_Iterator>;
41 using difference_type = iter_difference_t<_Iterator>;
45 constexpr _LIBCPP_HIDE_FROM_ABI __iterator_with_data(_Iterator __iter, _Data __data) in __iterator_with_data()
48 constexpr _LIBCPP_HIDE_FROM_ABI _Iterator __get_iter() const { return __iter_; } in __get_iter()
69 requires bidirectional_iterator<_Iterator>
76 requires bidirectional_iterator<_Iterator>
83 constexpr _LIBCPP_HIDE_FROM_ABI iter_reference_t<_Iterator> operator*() const { return *__iter_; }
85 _LIBCPP_HIDE_FROM_ABI friend constexpr iter_rvalue_reference_t<_Iterator>
[all …]
H A Dpermutable.h25 template <class _Iterator>
27 forward_iterator<_Iterator> && indirectly_movable_storable<_Iterator, _Iterator> &&
28 indirectly_swappable<_Iterator, _Iterator>;
H A Dsegmented_iterator.h53 template <class _Iterator>
74 template <class _Iterator>
75 using __is_segmented_iterator = __has_specialization<__segmented_iterator_traits<_Iterator> >;
/freebsd-14.2/contrib/llvm-project/libcxx/include/__algorithm/
H A Drotate.h171 template <class _AlgPolicy, class _Iterator, class _Sentinel>
172 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 pair<_Iterator, _Iterator>
173 __rotate(_Iterator __first, _Iterator __middle, _Sentinel __last) { in __rotate()
174 using _Ret = pair<_Iterator, _Iterator>; in __rotate()
175 _Iterator __last_iter = _IterOps<_AlgPolicy>::next(__middle, __last); in __rotate()
182 using _IterCategory = typename _IterOps<_AlgPolicy>::template __iterator_category<_Iterator>; in __rotate()
H A Diterator_operations.h141 template <class _Iterator>
142 …_LIBCPP_HIDE_FROM_ABI static _LIBCPP_CONSTEXPR_SINCE_CXX14 _Iterator next(_Iterator, _Iterator __l…
/freebsd-14.2/contrib/llvm-project/libcxx/include/__algorithm/pstl_backends/cpu_backends/
H A Dfor_each.h28 template <class _Iterator, class _DifferenceType, class _Function>
29 _LIBCPP_HIDE_FROM_ABI _Iterator __simd_walk(_Iterator __first, _DifferenceType __n, _Function __f) … in __simd_walk()
/freebsd-14.2/contrib/llvm-project/libcxx/include/__debug_utils/
H A Drandomize_range.h25 template <class _AlgPolicy, class _Iterator, class _Sentinel>
26 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 void __debug_randomize_range(_Iterator __first,… in __debug_randomize_range()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIMachineScheduler.h460 template<typename _Iterator> void fillVgprSgprCost(_Iterator First,
461 _Iterator End,
H A DSIMachineScheduler.cpp1859 template<typename _Iterator> void
1860 SIScheduleDAGMI::fillVgprSgprCost(_Iterator First, _Iterator End, in fillVgprSgprCost()
1864 for (_Iterator RegI = First; RegI != End; ++RegI) { in fillVgprSgprCost()
/freebsd-14.2/contrib/llvm-project/libcxx/include/__functional/
H A Dboyer_moore_searcher.h173 template <class _Iterator, class _Container>
175 …__compute_bm_prefix(_Iterator __first, _Iterator __last, _BinaryPredicate __pred, _Container& __pr… in __compute_bm_prefix()
/freebsd-14.2/contrib/llvm-project/libcxx/include/
H A D__split_buffer168 template <class _Iterator, class _Sentinel>
170 __construct_at_end_with_sentinel(_Iterator __first, _Sentinel __last);
172 template <class _Iterator>
174 __construct_at_end_with_size(_Iterator __first, size_type __n);
276 template <class _Iterator, class _Sentinel>
278 __split_buffer<_Tp, _Allocator>::__construct_at_end_with_sentinel(_Iterator __first, _Sentinel __la…
H A Ddeque430 return *__iter + _Iterator::__block_size;
436 return _Iterator(__segment, *__segment);
438 return _Iterator(__segment, __local);
1164 template <class _Iterator, class _Sentinel>
1169 template <class _Iterator>
1172 template <class _Iterator, class _Sentinel>
1175 template <class _Iterator>
1392 template <class _Iterator, class _Sentinel>
1423 template <class _Iterator>
1836 template <class _Iterator, class _Sentinel>
[all …]
H A D__node_handle196 template <class _Iterator, class _NodeType>
198 _Iterator position;
H A Dvector777 template <class _Iterator, class _Sentinel>
788 template <class _Iterator, class _Sentinel>
1312 template <class _Iterator, class _Sentinel>
1314 vector<_Tp, _Allocator>::__assign_with_sentinel(_Iterator __first, _Sentinel __last) {
1713 template <class _Iterator, class _Sentinel>
1716 const_iterator __position, _Iterator __first, _Sentinel __last, difference_type __n) {
1723 _Iterator __m = std::next(__first, __n);
2156 template <class _Iterator, class _Sentinel>
2167 template <class _Iterator, class _Sentinel>
2551 template <class _Iterator, class _Sentinel>
[all …]
H A Dlist930 template <class _Iterator, class _Sentinel>
931 _LIBCPP_HIDE_FROM_ABI void __assign_with_sentinel(_Iterator __f, _Sentinel __l);
933 template <class _Iterator, class _Sentinel>
934 …_LIBCPP_HIDE_FROM_ABI iterator __insert_with_sentinel(const_iterator __p, _Iterator __f, _Sentinel…
1131 template <class _Iterator, class _Sentinel>
1132 _LIBCPP_HIDE_FROM_ABI void list<_Tp, _Alloc>::__assign_with_sentinel(_Iterator __f, _Sentinel __l) {
1211 template <class _Iterator, class _Sentinel>
1213 list<_Tp, _Alloc>::__insert_with_sentinel(const_iterator __p, _Iterator __f, _Sentinel __l) {
H A Dstring1790 template <class _Iterator, class _Sentinel>
1792 __assign_trivial(_Iterator __first, _Sentinel __last, size_type __n);
1794 template <class _Iterator, class _Sentinel>
1795 …_LIBCPP_CONSTEXPR_SINCE_CXX20 _LIBCPP_HIDE_FROM_ABI void __assign_with_sentinel(_Iterator __first,…
1822 template <class _Iterator, class _Sentinel>
1824 __insert_with_size(const_iterator __pos, _Iterator __first, _Sentinel __last, size_type __n);
2640 template <class _Iterator, class _Sentinel>
2642 basic_string<_CharT, _Traits, _Allocator>::__assign_trivial(_Iterator __first, _Sentinel __last, si…
2923 template <class _Iterator, class _Sentinel>
2926 const_iterator __pos, _Iterator __first, _Sentinel __last, size_type __n) {
[all …]