Searched refs:__pred (Results 1 - 4 of 4) sorted by relevance

/haiku/headers/cpp/
H A Dstl_algo.h101 _Predicate __pred,
104 while (__first != __last && !__pred(*__first))
151 _Predicate __pred,
158 if (__pred(*__first)) return __first;
161 if (__pred(*__first)) return __first;
164 if (__pred(*__first)) return __first;
167 if (__pred(*__first)) return __first;
173 if (__pred(*__first)) return __first;
176 if (__pred(*__first)) return __first;
179 if (__pred(*__firs
100 find_if(_InputIter __first, _InputIter __last, _Predicate __pred, input_iterator_tag) argument
150 find_if(_RandomAccessIter __first, _RandomAccessIter __last, _Predicate __pred, random_access_iterator_tag) argument
197 find_if(_InputIter __first, _InputIter __last, _Predicate __pred) argument
246 count_if(_InputIter __first, _InputIter __last, _Predicate __pred, _Size& __n) argument
267 count_if(_InputIter __first, _InputIter __last, _Predicate __pred) argument
476 replace_if(_ForwardIter __first, _ForwardIter __last, _Predicate __pred, const _Tp& __new_value) argument
493 replace_copy_if(Iterator __first, Iterator __last, _OutputIter __result, _Predicate __pred, const _Tp& __new_value) argument
530 remove_copy_if(_InputIter __first, _InputIter __last, _OutputIter __result, _Predicate __pred) argument
550 remove_if(_ForwardIter __first, _ForwardIter __last, _Predicate __pred) argument
978 __partition(_ForwardIter __first, _ForwardIter __last, _Predicate __pred, forward_iterator_tag) argument
999 __partition(_BidirectionalIter __first, _BidirectionalIter __last, _Predicate __pred, bidirectional_iterator_tag) argument
1025 partition(_ForwardIter __first, _ForwardIter __last, _Predicate __pred) argument
1033 __inplace_stable_partition(_ForwardIter __first, _ForwardIter __last, _Predicate __pred, _Distance __len) argument
1049 __stable_partition_adaptive(_ForwardIter __first, _ForwardIter __last, _Predicate __pred, _Distance __len, _Pointer __buffer, _Distance __buffer_size) argument
1085 __stable_partition_aux(_ForwardIter __first, _ForwardIter __last, _Predicate __pred, _Tp*, _Distance*) argument
1099 stable_partition(_ForwardIter __first, _ForwardIter __last, _Predicate __pred) argument
[all...]
H A Dstl_slist.h671 void remove_if(_Predicate __pred);
674 void unique(_BinaryPredicate __pred);
863 void slist<_Tp,_Alloc>::remove_if(_Predicate __pred) argument
867 if (__pred(((_Node*) __cur->_M_next)->_M_data))
875 void slist<_Tp,_Alloc>::unique(_BinaryPredicate __pred) argument
880 if (__pred(((_Node*)__cur)->_M_data,
H A Dstl_function.h158 not1(const _Predicate& __pred) argument
160 return unary_negate<_Predicate>(__pred);
181 not2(const _Predicate& __pred) argument
183 return binary_negate<_Predicate>(__pred);
H A Dstl_list.h754 void list<_Tp, _Alloc>::remove_if(_Predicate __pred) argument
761 if (__pred(*__first)) erase(__first);

Completed in 169 milliseconds