Home
last modified time | relevance | path

Searched refs:_InputIter (Results 1 – 22 of 22) sorted by relevance

/external/stlport/stlport/stl/
D_num_get.h55 template <class _CharT, class _InputIter>
59 typedef _InputIter iter_type;
64 _InputIter get(_InputIter __ii, _InputIter __end, ios_base& __str, in get()
70 _InputIter get(_InputIter __ii, _InputIter __end, ios_base& __str, in get()
74 _InputIter get(_InputIter __ii, _InputIter __end, ios_base& __str, in get()
79 _InputIter get(_InputIter __ii, _InputIter __end, ios_base& __str, in get()
83 _InputIter get(_InputIter __ii, _InputIter __end, ios_base& __str, in get()
87 _InputIter get(_InputIter __ii, _InputIter __end, ios_base& __str, in get()
91 _InputIter get(_InputIter __ii, _InputIter __end, ios_base& __str, in get()
96 _InputIter get(_InputIter __ii, _InputIter __end, ios_base& __str, in get()
[all …]
D_num_get.c54 template <class _InputIter, class _CharT>
56 __get_base_or_zero(_InputIter& __in_ite, _InputIter& __end, in __get_base_or_zero()
116 template <class _InputIter, class _Integer, class _CharT>
118 __get_integer(_InputIter& __first, _InputIter& __last, in __get_integer()
176 template <class _InputIter, class _Integer, class _CharT>
178 __get_integer(_InputIter& __first, _InputIter& __last, in __get_integer()
237 template <class _InputIter, class _Integer, class _CharT>
239 __get_decimal_integer(_InputIter& __first, _InputIter& __last, _Integer& __val, _CharT* /*dummy*/) { in __get_decimal_integer()
245 template <class _InputIter, class _Integer, class _CharT>
246 _InputIter _STLP_CALL
[all …]
D_uninitialized.h51 template <class _InputIter, class _OutputIter, class _Distance>
52 inline _OutputIter __ucopy(_InputIter __first, _InputIter __last, in __ucopy()
64 template <class _InputIter, class _OutputIter, class _Distance>
65 inline _OutputIter __ucopy(_InputIter __first, _InputIter __last, in __ucopy()
70 template <class _InputIter, class _OutputIter, class _Distance>
71 inline _OutputIter __ucopy(_InputIter __first, _InputIter __last, in __ucopy()
75 template <class _InputIter, class _OutputIter, class _Distance>
76 inline _OutputIter __ucopy(_InputIter __first, _InputIter __last, in __ucopy()
110 template <class _InputIter, class _OutputIter>
111 inline _OutputIter __ucopy_ptrs(_InputIter __first, _InputIter __last, _OutputIter __result, in __ucopy_ptrs()
[all …]
D_algobase.h183 template <class _InputIter, class _OutputIter, class _Distance>
184 inline _OutputIter __copy(_InputIter __first, _InputIter __last, in __copy()
192 template <class _InputIter, class _OutputIter, class _Distance>
193 inline _OutputIter __copy(_InputIter __first, _InputIter __last, in __copy()
200 template <class _InputIter, class _OutputIter, class _Distance>
201 inline _OutputIter __copy(_InputIter __first, _InputIter __last, in __copy()
259 template <class _InputIter, class _OutputIter>
260 inline _OutputIter __copy_ptrs(_InputIter __first, _InputIter __last, _OutputIter __result, in __copy_ptrs()
264 template <class _InputIter, class _OutputIter>
265 inline _OutputIter __copy_ptrs(_InputIter __first, _InputIter __last, _OutputIter __result, in __copy_ptrs()
[all …]
D_algobase.c194 template <class _InputIter, class _Tp>
195 _STLP_INLINE_LOOP _InputIter __find(_InputIter __first, _InputIter __last, in __find()
202 template <class _InputIter, class _Predicate>
203 _STLP_INLINE_LOOP _InputIter __find_if(_InputIter __first, _InputIter __last, in __find_if()
213 template <class _InputIter, class _Predicate>
214 _InputIter find_if(_InputIter __first, _InputIter __last, in find_if()
217 …return _STLP_PRIV __find_if(__first, __last, __pred, _STLP_ITERATOR_CATEGORY(__first, _InputIter)); in find_if()
220 template <class _InputIter, class _Tp>
221 _InputIter find(_InputIter __first, _InputIter __last, const _Tp& __val) { in find()
223 return _STLP_PRIV __find(__first, __last, __val, _STLP_ITERATOR_CATEGORY(__first, _InputIter)); in find()
[all …]
D_string_workaround.h113 template <class _InputIter>
114 void _M_range_initialize(_InputIter __f, _InputIter __l, in _M_range_initialize()
130 template <class _InputIter>
131 void _M_range_initializeT(_InputIter __f, _InputIter __l) { in _M_range_initializeT()
132 _M_range_initialize(__f, __l, _STLP_ITERATOR_CATEGORY(__f, _InputIter)); in _M_range_initializeT()
142 template <class _InputIter>
143 void _M_initialize_dispatch(_InputIter __f, _InputIter __l, const __false_type& /*_Integral*/) { in _M_initialize_dispatch()
190 template <class _InputIter>
191 _Self& append(_InputIter __first, _InputIter __last) { in append()
192 typedef typename _IsIntegral<_InputIter>::_Ret _Integral; in append()
[all …]
D_algo.h57 template <class _InputIter, class _Function>
59 for_each(_InputIter __first, _InputIter __last, _Function __f) { in for_each()
66 template <class _InputIter, class _Predicate>
67 _STLP_INLINE_LOOP _STLP_DIFFERENCE_TYPE(_InputIter) in _STLP_DIFFERENCE_TYPE() argument
68 count_if(_InputIter __first, _InputIter __last, _Predicate __pred) { in _STLP_DIFFERENCE_TYPE()
70 _STLP_DIFFERENCE_TYPE(_InputIter) __n = 0; in _STLP_DIFFERENCE_TYPE()
104 template <class _InputIter, class _Tp, class _Size>
106 count(_InputIter __first, _InputIter __last, const _Tp& __val, _Size& __n) { in count()
113 template <class _InputIter, class _Predicate, class _Size>
115 count_if(_InputIter __first, _InputIter __last, _Predicate __pred, _Size& __n) { in count_if()
[all …]
D_string.c73 template <class _InputIter, class _CharT, class _Traits>
74 inline _InputIter __str_find_first_of_aux(_InputIter __first1, _InputIter __last1, in __str_find_first_of_aux()
79 template <class _InputIter, class _CharT, class _Traits>
80 inline _InputIter __str_find_first_of_aux(_InputIter __first1, _InputIter __last1, in __str_find_first_of_aux()
85 template <class _InputIter, class _CharT, class _Traits>
86 inline _InputIter __str_find_first_of(_InputIter __first1, _InputIter __last1, in __str_find_first_of()
98 template <class _InputIter, class _CharT, class _Traits>
99 inline _InputIter __str_find_first_not_of_aux3(_InputIter __first1, _InputIter __last1, in __str_find_first_not_of_aux3()
104 template <class _InputIter, class _CharT, class _Traits>
105 inline _InputIter __str_find_first_not_of_aux3(_InputIter __first1, _InputIter __last1, in __str_find_first_not_of_aux3()
[all …]
D_string.h312 template <class _InputIter>
313 void _M_range_initialize(_InputIter __f, _InputIter __l, in _M_range_initialize()
329 template <class _InputIter>
330 void _M_range_initializeT(_InputIter __f, _InputIter __l) { in _M_range_initializeT()
331 _M_range_initialize(__f, __l, _STLP_ITERATOR_CATEGORY(__f, _InputIter)); in _M_range_initializeT()
341 template <class _InputIter>
342 void _M_initialize_dispatch(_InputIter __f, _InputIter __l, const __false_type& /*_Integral*/) { in _M_initialize_dispatch()
459 template <class _InputIter>
460 _Self& _M_appendT(_InputIter __first, _InputIter __last, in _M_appendT()
495 template <class _InputIter>
[all …]
D_facets_fwd.h10 template <class _CharT, class _InputIter>
12 template <class _CharT, class _InputIter = istreambuf_iterator<_CharT, char_traits<_CharT> > >
24 template <class _CharT, class _InputIter>
26 template <class _CharT, class _InputIter = istreambuf_iterator<_CharT, char_traits<_CharT> > >
D_monetary.c121 template <class _CharT, class _InputIter, class _StrType>
122 _InputIter __money_do_get(_InputIter __s, _InputIter __end, bool __intl, in __money_do_get()
132 typedef _InputIter iter_type; in __money_do_get()
246 pair<_InputIter, bool> in __money_do_get()
257 pair<_InputIter, bool> in __money_do_get()
277 template <class _CharT, class _InputIter>
278 _InputIter
279 money_get<_CharT, _InputIter>::do_get(_InputIter __s, _InputIter __end, bool __intl, in do_get()
302 template <class _CharT, class _InputIter>
303 _InputIter
[all …]
D_algo.c308 template <class _InputIter, class _OutputIter, class _BinaryPredicate>
310 __unique_copy(_InputIter __first, _InputIter __last,_OutputIter __result, in __unique_copy()
313 _STLP_VALUE_TYPE(__first, _InputIter)); in __unique_copy()
316 template <class _InputIter, class _ForwardIter, class _BinaryPredicate>
318 __unique_copy(_InputIter __first, _InputIter __last, _ForwardIter __result, in __unique_copy()
346 template <class _InputIter, class _OutputIter>
348 unique_copy(_InputIter __first, _InputIter __last, _OutputIter __result) { in unique_copy()
352 _STLP_PRIV __equal_to(_STLP_VALUE_TYPE(__first, _InputIter)), in unique_copy()
356 template <class _InputIter, class _OutputIter, class _BinaryPredicate>
358 unique_copy(_InputIter __first, _InputIter __last,_OutputIter __result, in unique_copy()
[all …]
D_vector.h346 template <class _InputIter>
347 void _M_assign_aux(_InputIter __first, _InputIter __last,
363 template <class _InputIter>
364 void _M_assign_dispatch(_InputIter __first, _InputIter __last,
366 { _M_assign_aux(__first, __last, _STLP_ITERATOR_CATEGORY(__first, _InputIter)); }
D_list.h449 template <class _InputIter>
451 _InputIter __first, _InputIter __last,
480 template <class _InputIter>
482 _InputIter __first, _InputIter __last,
D_iterator_base.h478 template <class _InputIter, class _Distance>
480 __advance(_InputIter& __i, _Distance __n, const input_iterator_tag &)
484 template <class _InputIter, class _Distance>
486 __advance(_InputIter& __i, _Distance __n, const output_iterator_tag &)
D_deque.h523 template <class _InputIter>
524 void _M_initialize_dispatch(_InputIter __first, _InputIter __last,
526 _M_range_initialize(__first, __last, _STLP_ITERATOR_CATEGORY(__first, _InputIter));
622 template <class _InputIter>
623 void _M_assign_aux(_InputIter __first, _InputIter __last, const input_iterator_tag &) {
D_monetary.h53 template <class _CharT, class _InputIter>
57 typedef _InputIter iter_type;
D_bvector.h620 template <class _InputIter>
621 void _M_assign_dispatch(_InputIter __first, _InputIter __last, const __false_type&)
622 { _M_assign_aux(__first, __last, _STLP_ITERATOR_CATEGORY(__first, _InputIter)); }
D_string_sum.h145 template <class _InputIter>
146 _BString& append(_InputIter __first, _InputIter __last) in append()
D_slist.h368 template <class _InputIter>
369 void _M_assign_dispatch(_InputIter __first, _InputIter __last,
/external/stlport/stlport/stl/debug/
D_iterator.h387 template <class _InputIter>
388 __construct_checker(const _InputIter& __f, const _InputIter& __l) { in __construct_checker()
389 typedef typename _IsIntegral<_InputIter>::_Ret _Integral; in __construct_checker()
396 template <class _InputIter>
397 …void _M_check_dispatch(const _InputIter& __f, const _InputIter& __l, const __false_type& /*IsInteg… in _M_check_dispatch()
D_string.h243 template <class _InputIter>
244 _Self& append(_InputIter __first, _InputIter __last) { in append()
361 template <class _InputIter>
362 inline _Self& assign(_InputIter __first, _InputIter __last) { in assign()
442 template <class _InputIter>
443 void insert(iterator __p, _InputIter __first, _InputIter __last) { in insert()
592 template <class _InputIter>
594 _InputIter __f, _InputIter __l) { in replace()