Lines Matching refs:__first2
2840 _ForwardIterator2 __first2, _ForwardIterator2 __last2, _BinaryPredicate __pred,
2843 if (__first2 == __last2)
2847 // Find first element in sequence 1 that matchs *__first2, with a mininum of loop checks
2850 if (__first1 == __last1) // return __last1 if no element matches *__first2
2852 if (__pred(*__first1, *__first2))
2856 // *__first1 matches *__first2, now match elements after here
2858 _ForwardIterator2 __m2 = __first2;
2878 _RandomAccessIterator2 __first2, _RandomAccessIterator2 __last2, _BinaryPredicate __pred,
2884 const _D2 __len2 = __last2 - __first2;
2898 if (__pred(*__first1, *__first2))
2904 _RandomAccessIterator2 __m2 = __first2;