Lines Matching refs:__first2
3049 _ForwardIterator2 __first2, _ForwardIterator2 __last2, _BinaryPredicate __pred,
3052 if (__first2 == __last2)
3056 // Find first element in sequence 1 that matchs *__first2, with a mininum of loop checks
3059 if (__first1 == __last1) // return __last1 if no element matches *__first2
3061 if (__pred(*__first1, *__first2))
3065 // *__first1 matches *__first2, now match elements after here
3067 _ForwardIterator2 __m2 = __first2;
3087 _RandomAccessIterator2 __first2, _RandomAccessIterator2 __last2, _BinaryPredicate __pred,
3093 const _D2 __len2 = __last2 - __first2;
3107 if (__pred(*__first1, *__first2))
3113 _RandomAccessIterator2 __m2 = __first2;