Lines Matching defs:__pred
36 _Iter __first, _Sent __last, _SizeT __count, const _Type& __value, _Pred& __pred, _Proj& __proj) {
46 if (std::__invoke(__pred, std::__invoke(__proj, *__first), __value))
62 if (!std::__invoke(__pred, std::__invoke(__proj, *__m), __value)) {
73 _Iter __first, _Sent __last, _SizeT __count, const _Type& __value, _Pred& __pred, _Proj& __proj, _DiffT __size1) {
90 if (std::__invoke(__pred, std::__invoke(__proj, *__first), __value))
103 if (!std::__invoke(__pred, std::__invoke(__proj, *__m), __value)) {
120 __search_n_impl(_Iter __first, _Sent __last, _DiffT __count, const _Type& __value, _Pred& __pred, _Proj& __proj) {
122 __first, __last, __count, __value, __pred, __proj, __last - __first);
135 __search_n_impl(_Iter1 __first, _Sent1 __last, _DiffT __count, const _Type& __value, _Pred& __pred, _Proj& __proj) {
136 return std::__search_n_forward_impl<_ClassicAlgPolicy>(__first, __last, __count, __value, __pred, __proj);
141 _ForwardIterator __first, _ForwardIterator __last, _Size __count, const _Tp& __value, _BinaryPredicate __pred) {
145 return std::__search_n_impl(__first, __last, std::__convert_to_integral(__count), __value, __pred, __proj).first;