Searched refs:__last1 (Results 1 - 5 of 5) sorted by relevance

/haiku/headers/cpp/
H A Dstl_algobase.h364 _InputIter1 __last1,
366 while (__first1 != __last1 && *__first1 == *__first2) {
375 _InputIter1 __last1,
378 while (__first1 != __last1 && __binary_pred(*__first1, *__first2)) {
386 inline bool equal(_InputIter1 __first1, _InputIter1 __last1, argument
388 for ( ; __first1 != __last1; ++__first1, ++__first2)
395 inline bool equal(_InputIter1 __first1, _InputIter1 __last1, argument
397 for ( ; __first1 != __last1; ++__first1, ++__first2)
408 bool lexicographical_compare(_InputIter1 __first1, _InputIter1 __last1, argument
410 for ( ; __first1 != __last1
363 mismatch(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2) argument
374 mismatch(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _BinaryPredicate __binary_pred) argument
421 lexicographical_compare(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _Compare __comp) argument
435 lexicographical_compare(const unsigned char* __first1, const unsigned char* __last1, const unsigned char* __first2, const unsigned char* __last2) argument
446 lexicographical_compare(const char* __first1, const char* __last1, const char* __first2, const char* __last2) argument
463 __lexicographical_compare_3way(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2) argument
483 __lexicographical_compare_3way(const unsigned char* __first1, const unsigned char* __last1, const unsigned char* __first2, const unsigned char* __last2) argument
496 __lexicographical_compare_3way(const char* __first1, const char* __last1, const char* __first2, const char* __last2) argument
514 lexicographical_compare_3way(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2) argument
[all...]
H A Dstl_algo.h281 _ForwardIter1 search(_ForwardIter1 __first1, _ForwardIter1 __last1, argument
285 if (__first1 == __last1 || __first2 == __last2)
292 return find(__first1, __last1, *__first2);
302 while (__first1 != __last1) {
303 __first1 = find(__first1, __last1, *__first2);
304 if (__first1 == __last1)
305 return __last1;
309 if (++__current == __last1)
310 return __last1;
315 if (++__current == __last1)
325 search(_ForwardIter1 __first1, _ForwardIter1 __last1, _ForwardIter2 __first2, _ForwardIter2 __last2, _BinaryPred __predicate) argument
438 swap_ranges(_ForwardIter1 __first1, _ForwardIter1 __last1, _ForwardIter2 __first2) argument
457 transform(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _OutputIter __result, _BinaryOperation __binary_op) argument
1941 merge(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result) argument
1960 merge(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result, _Compare __comp) argument
2077 __merge_backward(_BidirectionalIter1 __first1, _BidirectionalIter1 __last1, _BidirectionalIter2 __first2, _BidirectionalIter2 __last2, _BidirectionalIter3 __result) argument
2106 __merge_backward(_BidirectionalIter1 __first1, _BidirectionalIter1 __last1, _BidirectionalIter2 __first2, _BidirectionalIter2 __last2, _BidirectionalIter3 __result, _Compare __comp) argument
2283 includes(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2) argument
2297 includes(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _Compare __comp) argument
2311 set_union(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result) argument
2335 set_union(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result, _Compare __comp) argument
2358 set_intersection(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result) argument
2377 set_intersection(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result, _Compare __comp) argument
2395 set_difference(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result) argument
2415 set_difference(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result, _Compare __comp) argument
2435 set_symmetric_difference(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result) argument
2459 set_symmetric_difference(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result, _Compare __comp) argument
2649 find_first_of(_InputIter __first1, _InputIter __last1, _ForwardIter __first2, _ForwardIter __last2) argument
2660 find_first_of(_InputIter __first1, _InputIter __last1, _ForwardIter __first2, _ForwardIter __last2, _BinaryPredicate __comp) argument
2679 __find_end(_ForwardIter1 __first1, _ForwardIter1 __last1, _ForwardIter2 __first2, _ForwardIter2 __last2, forward_iterator_tag, forward_iterator_tag) argument
2703 __find_end(_ForwardIter1 __first1, _ForwardIter1 __last1, _ForwardIter2 __first2, _ForwardIter2 __last2, forward_iterator_tag, forward_iterator_tag, _BinaryPredicate __comp) argument
2731 __find_end(_BidirectionalIter1 __first1, _BidirectionalIter1 __last1, _BidirectionalIter2 __first2, _BidirectionalIter2 __last2, bidirectional_iterator_tag, bidirectional_iterator_tag) argument
2755 __find_end(_BidirectionalIter1 __first1, _BidirectionalIter1 __last1, _BidirectionalIter2 __first2, _BidirectionalIter2 __last2, bidirectional_iterator_tag, bidirectional_iterator_tag, _BinaryPredicate __comp) argument
2783 find_end(_ForwardIter1 __first1, _ForwardIter1 __last1, _ForwardIter2 __first2, _ForwardIter2 __last2) argument
2794 find_end(_ForwardIter1 __first1, _ForwardIter1 __last1, _ForwardIter2 __first2, _ForwardIter2 __last2, _BinaryPredicate __comp) argument
[all...]
H A Dstl_numeric.h55 _Tp inner_product(_InputIterator1 __first1, _InputIterator1 __last1, argument
58 for ( ; __first1 != __last1; ++__first1, ++__first2)
65 _Tp inner_product(_InputIterator1 __first1, _InputIterator1 __last1, argument
70 for ( ; __first1 != __last1; ++__first1, ++__first2)
H A Dstl_list.h619 iterator __last1 = end(); local
622 while (__first1 != __last1 && __first2 != __last2)
625 erase(__first1, __last1);
627 insert(__last1, __first2, __last2);
651 iterator __last1 = end(); local
652 for ( ; __first1 != __last1 && __first2 != __last2; ++__first1, ++__first2)
655 erase(__first1, __last1);
657 insert(__last1, __first2, __last2);
695 iterator __last1 = end(); local
698 while (__first1 != __last1
787 iterator __last1 = end(); local
[all...]
H A Dstl_uninitialized.h230 __uninitialized_copy_copy(_InputIter1 __first1, _InputIter1 __last1, argument
234 _ForwardIter __mid = uninitialized_copy(__first1, __last1, __result);
262 __uninitialized_copy_fill(_InputIter __first1, _InputIter __last1, argument
266 _ForwardIter __mid2 = uninitialized_copy(__first1, __last1, __first2);

Completed in 51 milliseconds