Home
last modified time | relevance | path

Searched refs:__find_if_impl (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/__algorithm/
H A Dranges_find_if.h37 _LIBCPP_HIDE_FROM_ABI constexpr _Ip __find_if_impl(_Ip __first, _Sp __last, _Pred& __pred, _Proj& _… in __find_if_impl() function
53 return ranges::__find_if_impl(std::move(__first), std::move(__last), __pred, __proj);
59 return ranges::__find_if_impl(ranges::begin(__r), ranges::end(__r), __pred, __proj);
H A Dranges_find_if_not.h46 return ranges::__find_if_impl(std::move(__first), std::move(__last), __pred2, __proj);
53 return ranges::__find_if_impl(ranges::begin(__r), ranges::end(__r), __pred2, __proj);
H A Dranges_remove_if.h42 auto __new_end = ranges::__find_if_impl(__first, __last, __pred, __proj); in __remove_if_impl()