Lines Matching defs:__proj
47 __find(_Iter __first, _Sent __last, const _Tp& __value, _Proj& __proj) {
49 if (std::__invoke(__proj, *__first) == __value)
91 __find(_Tp* __first, _Tp* __last, const _Up& __value, _Proj& __proj) {
94 return std::__find(__first, __last, _Tp(__value), __proj);
154 __find(_SegmentedIterator __first, _SegmentedIterator __last, const _Tp& __value, _Proj& __proj) {
155 return std::__find_segment_if(std::move(__first), std::move(__last), __find_segment<_Tp>(__value), __proj);
166 operator()(_InputIterator __first, _InputIterator __last, _Proj& __proj) const {
167 return std::__find(__first, __last, __value_, __proj);
175 __identity __proj;
177 __first, std::__find(std::__unwrap_iter(__first), std::__unwrap_iter(__last), __value, __proj));