Searched refs:__first1 (Results 1 - 9 of 9) sorted by relevance

/external/stlport/stlport/stl/
H A D_algobase.c39 bool lexicographical_compare(_InputIter1 __first1, _InputIter1 __last1, argument
41 _STLP_DEBUG_CHECK(_STLP_PRIV __check_range(__first1, __last1))
43 for ( ; __first1 != __last1 && __first2 != __last2
44 ; ++__first1, ++__first2) {
45 if (*__first1 < *__first2) {
46 _STLP_VERBOSE_ASSERT(!(*__first2 < *__first1), _StlMsg_INVALID_STRICT_WEAK_PREDICATE)
49 if (*__first2 < *__first1)
52 return __first1 == __last1 && __first2 != __last2;
56 bool lexicographical_compare(_InputIter1 __first1, _InputIter1 __last1, argument
59 _STLP_DEBUG_CHECK(_STLP_PRIV __check_range(__first1, __last
78 __lexicographical_compare_3way(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2) argument
101 lexicographical_compare_3way(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2) argument
227 search(_ForwardIter1 __first1, _ForwardIter1 __last1, _ForwardIter2 __first2, _ForwardIter2 __last2, _BinaryPred __pred) argument
297 __find_first_of_aux2(_InputIter __first1, _InputIter __last1, _ForwardIter __first2, _ForwardIter __last2, _Tp2*, _Predicate __pred, const __true_type& ) argument
318 __find_first_of_aux2(_InputIter __first1, _InputIter __last1, _ForwardIter __first2, _ForwardIter __last2, _Tp2* , _Predicate , const __false_type& ) argument
327 __find_first_of_aux1(_InputIter __first1, _InputIter __last1, _ForwardIter __first2, _ForwardIter __last2, _Tp1* _STLP_UNUSED(__pt1), _Tp2* __pt2) argument
339 __find_first_of(_InputIter __first1, _InputIter __last1, _ForwardIter __first2, _ForwardIter __last2) argument
348 __find_first_of(_InputIter __first1, _InputIter __last1, _ForwardIter __first2, _ForwardIter __last2, _BinaryPredicate __comp) argument
369 __find_end(_ForwardIter1 __first1, _ForwardIter1 __last1, _ForwardIter2 __first2, _ForwardIter2 __last2, const forward_iterator_tag &, const forward_iterator_tag &, _BinaryPredicate __comp) argument
406 __find_end(_BidirectionalIter1 __first1, _BidirectionalIter1 __last1, _BidirectionalIter2 __first2, _BidirectionalIter2 __last2, const bidirectional_iterator_tag &, const bidirectional_iterator_tag &, _BinaryPredicate __comp) argument
434 find_end(_ForwardIter1 __first1, _ForwardIter1 __last1, _ForwardIter2 __first2, _ForwardIter2 __last2, _BinaryPredicate __comp) argument
[all...]
H A D_list.c109 iterator __first1 = begin();
113 while (__first1 != __last1 && __first2 != __last2)
114 *__first1++ = *__first2++;
116 erase(__first1, __last1);
171 _Literator __first1 = __that.begin(); local
176 while (__first1 != __last1 && __first2 != __last2) {
177 if (__comp(*__first2, *__first1)) {
178 _STLP_VERBOSE_ASSERT(!__comp(*__first1, *__first2), _StlMsg_INVALID_STRICT_WEAK_PREDICATE)
180 _List_global_inst::_Transfer(__first1._M_node, __first2._M_node, (++__next)._M_node);
184 ++__first1;
[all...]
H A D_algo.c51 _BidirectionalIter3 __merge_backward(_BidirectionalIter1 __first1,
112 _ForwardIter1 search(_ForwardIter1 __first1, _ForwardIter1 __last1, argument
114 _STLP_DEBUG_CHECK(_STLP_PRIV __check_range(__first1, __last1))
117 if (__first1 == __last1 || __first2 == __last2)
118 return __first1;
124 return find(__first1, __last1, *__first2);
128 for ( ; ; ) { // __first1 != __last1 will be checked in find below
129 __first1 = find(__first1, __last1, *__first2);
130 if (__first1
273 find_end(_ForwardIter1 __first1, _ForwardIter1 __last1, _ForwardIter2 __first2, _ForwardIter2 __last2) argument
1419 merge(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result) argument
1440 merge(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result, _Compare __comp) argument
1503 __merge_backward(_BidirectionalIter1 __first1, _BidirectionalIter1 __last1, _BidirectionalIter2 __first2, _BidirectionalIter2 __last2, _BidirectionalIter3 __result, _Compare __comp) argument
1581 __includes(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _Compare __comp) argument
1601 includes(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _Compare __comp) argument
1607 includes(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2) argument
1617 __set_union(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result, _Compare __comp) argument
1646 set_union(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result) argument
1655 set_union(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result, _Compare __comp) argument
1665 __set_intersection(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result, _Compare __comp) argument
1689 set_intersection(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result) argument
1698 set_intersection(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result, _Compare __comp) argument
1708 __set_difference(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result, _Compare __comp) argument
1732 set_difference(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result) argument
1741 set_difference(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result, _Compare __comp) argument
1751 __set_symmetric_difference(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result, _Compare __comp) argument
1780 set_symmetric_difference(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result) argument
1789 set_symmetric_difference(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result, _Compare __comp) argument
[all...]
H A D_algobase.h522 _STLP_STD::pair<_InputIter1, _InputIter2> mismatch(_InputIter1 __first1, argument
526 _STLP_DEBUG_CHECK(_STLP_PRIV __check_range(__first1, __last1))
527 while (__first1 != __last1 && *__first1 == *__first2) {
528 ++__first1;
531 return _STLP_STD::pair<_InputIter1, _InputIter2>(__first1, __first2);
536 _STLP_STD::pair<_InputIter1, _InputIter2> mismatch(_InputIter1 __first1, argument
541 _STLP_DEBUG_CHECK(_STLP_PRIV __check_range(__first1, __last1))
542 while (__first1 != __last1 && __binary_pred(*__first1, *__first
551 equal(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2) argument
563 equal(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _BinaryPredicate __binary_pred) argument
587 lexicographical_compare(const unsigned char* __first1, const unsigned char* __last1, const unsigned char* __first2, const unsigned char* __last2) argument
602 lexicographical_compare(const char* __first1, const char* __last1, const char* __first2, const char* __last2) argument
621 __lexicographical_compare_3way(const unsigned char* __first1, const unsigned char* __last1, const unsigned char* __first2, const unsigned char* __last2) argument
635 __lexicographical_compare_3way(const char* __first1, const char* __last1, const char* __first2, const char* __last2) argument
[all...]
H A D_numeric.h61 _Tp inner_product(_InputIterator1 __first1, _InputIterator1 __last1, argument
63 _STLP_DEBUG_CHECK(_STLP_PRIV __check_range(__first1, __last1))
64 for ( ; __first1 != __last1; ++__first1, ++__first2)
65 _Init = _Init + (*__first1 * *__first2);
72 _Tp inner_product(_InputIterator1 __first1, _InputIterator1 __last1, argument
76 _STLP_DEBUG_CHECK(_STLP_PRIV __check_range(__first1, __last1))
77 for ( ; __first1 != __last1; ++__first1, ++__first2)
78 _Init = __binary_op1(_Init, __binary_op2(*__first1, *__first
[all...]
H A D_algo.h124 _ForwardIter1 search(_ForwardIter1 __first1, _ForwardIter1 __last1,
136 inline _InputIter find_first_of(_InputIter __first1, _InputIter __last1, argument
138 _STLP_DEBUG_CHECK(_STLP_PRIV __check_range(__first1, __last1))
140 return _STLP_PRIV __find_first_of(__first1, __last1, __first2, __last2);
145 find_first_of(_InputIter __first1, _InputIter __last1, argument
147 _STLP_DEBUG_CHECK(_STLP_PRIV __check_range(__first1, __last1))
149 return _STLP_PRIV __find_first_of(__first1, __last1, __first2, __last2, __comp);
154 find_end(_ForwardIter1 __first1, _ForwardIter1 __last1,
160 swap_ranges(_ForwardIter1 __first1, _ForwardIter1 __last1, _ForwardIter2 __first2) { argument
161 _STLP_DEBUG_CHECK(_STLP_PRIV __check_range(__first1, __last
178 transform(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _OutputIter __result,_BinaryOperation __binary_op) argument
[all...]
H A D_string.c74 inline _InputIter __str_find_first_of_aux(_InputIter __first1, _InputIter __last1, argument
77 { return __find_first_of(__first1, __last1, __first2, __last2); }
80 inline _InputIter __str_find_first_of_aux(_InputIter __first1, _InputIter __last1, argument
83 { return __find_first_of(__first1, __last1, __first2, __last2, _STLP_PRIV _Eq_traits<_Traits>()); }
86 inline _InputIter __str_find_first_of(_InputIter __first1, _InputIter __last1, argument
95 return __str_find_first_of_aux(__first1, __last1, __first2, __last2, __traits, _STLportTraits());
99 inline _InputIter __str_find_first_not_of_aux3(_InputIter __first1, _InputIter __last1, argument
102 { return __find_first_of_aux2(__first1, __last1, __first2, __last2, __first2, not1(_Identity<bool>()), __useStrcspnLikeAlgo); }
105 inline _InputIter __str_find_first_not_of_aux3(_InputIter __first1, _InputIter __last1, argument
108 { return _STLP_STD::find_if(__first1, __last
111 __str_find_first_not_of_aux2(_InputIter __first1, _InputIter __last1, const _CharT* __first2, const _CharT* __last2, _Tp* _STLP_UNUSED(__pt), _Traits* __traits) argument
121 __str_find_first_not_of_aux1(_InputIter __first1, _InputIter __last1, const _CharT* __first2, const _CharT* __last2, _Traits* __traits, const __true_type& ) argument
128 __str_find_first_not_of_aux1(_InputIter __first1, _InputIter __last1, const _CharT* __first2, const _CharT* __last2, _Traits*, const __false_type& ) argument
134 __str_find_first_not_of(_InputIter __first1, _InputIter __last1, const _CharT* __first2, const _CharT* __last2, _Traits* __traits) argument
[all...]
H A D_list.h577 iterator __first1 = begin();
579 for ( ; __first1 != __last1 && __first2 != __last2; ++__first1, ++__first2)
580 *__first1 = *__first2;
582 erase(__first1, __last1);
588 iterator __first1 = begin(); local
590 for ( ; __first1 != __last1 && __first2 != __last2; ++__first1, ++__first2)
591 *__first1 = *__first2;
593 erase(__first1, __last
[all...]
H A D_uninitialized.h373 __uninitialized_copy_copy(_InputIter1 __first1, _InputIter1 __last1, argument
376 _ForwardIter __new_result = uninitialized_copy(__first1, __last1, __result);
404 __uninitialized_copy_fill(_Iter __first1, _Iter __last1, _Iter __first2, _Iter __last2, argument
406 _Iter __mid2 = uninitialized_copy(__first1, __last1, __first2);

Completed in 92 milliseconds