Lines Matching refs:element
952 // Find last element in sequence 1 that matchs *(__last2-1), with a mininum of loop checks
955 if (__first1 == __l1) // return __last1 if no element matches *__first2
965 … if (__m2 == __first2) // If pattern exhausted, __m1 is the answer (works for 1 element pattern)
1269 // For each element in [f1, l1) see if there are the same number of
1332 // For each element in [f1, l1) see if there are the same number of
1415 // Find first element in sequence 1 that matchs *__first2, with a mininum of loop checks
1418 if (__first1 == __last1) // return __last1 if no element matches *__first2
1429 … (++__m2 == __last2) // If pattern exhausted, __first1 is the answer (works for 1 element pattern)
1588 // Find first element in sequence that matchs __value_, with a mininum of loop checks
1591 if (__first == __last) // return __last if no element matches __value_
1602 …if (++__c == __count) // If pattern exhausted, __first is the answer (works for 1 element pattern)
1629 // Find first element in sequence that matchs __value_, with a mininum of loop checks
1632 if (__first >= __s) // return __last if no element matches __value_
1643 …if (++__c == __count) // If pattern exhausted, __first is the answer (works for 1 element pattern)