/reactos/sdk/include/c++/stlport/stl/ |
H A D | _algobase.c | 165 if (__pred(*__first)) return __first; in __find_if() 168 if (__pred(*__first)) return __first; in __find_if() 171 if (__pred(*__first)) return __first; in __find_if() 174 if (__pred(*__first)) return __first; in __find_if() 180 if (__pred(*__first)) return __first; in __find_if() 183 if (__pred(*__first)) return __first; in __find_if() 186 if (__pred(*__first)) return __first; in __find_if() 206 while (__first != __last && !__pred(*__first)) in __find_if() 215 _Predicate __pred) { in find_if() argument 229 _BinaryPred __pred) { in search() argument [all …]
|
H A D | _algo.c | 193 while ( __pred(*__lookAhead, __val) ) { in __search_n() 200 } while (__pred(*--__backTrack, __val)); in __search_n() 682 while (__pred(*__first)) in __partition() 688 if (__pred(*__next)) { in __partition() 705 else if (__pred(*__first)) in __partition() 714 else if (!__pred(*__last)) in __partition() 729 _Predicate __pred, in __partition() argument 782 ((__len != 1) && __pred(*__first))){ in __stable_partition_adaptive() 819 __inplace_stable_partition(__first, __last, __pred, in __stable_partition_aux_aux() 841 else if (!__pred(*__last)) in __stable_partition_aux() [all …]
|
H A D | _algo.h | 68 count_if(_InputIter __first, _InputIter __last, _Predicate __pred) { in _STLP_DIFFERENCE_TYPE() 72 if (__pred(*__first)) in _STLP_DIFFERENCE_TYPE() 115 count_if(_InputIter __first, _InputIter __last, _Predicate __pred, _Size& __n) { in count_if() argument 118 if (__pred(*__first)) in count_if() 193 if (__pred(*__first)) in replace_if() 211 _Predicate __pred, const _Tp& __new_value) { in replace_copy_if() argument 214 *__result = __pred(*__first) ? __new_value : *__first; in replace_copy_if() 255 if (!__pred(*__first)) { in remove_copy_if() 278 remove_if(_ForwardIter __first, _ForwardIter __last, _Predicate __pred) { in remove_if() argument 280 __first = find_if(__first, __last, __pred); in remove_if() [all …]
|
H A D | _function.h | 154 not1(const _Predicate& __pred) { in not1() argument 155 return unary_negate<_Predicate>(__pred); in not1() 183 not2(const _Predicate& __pred) { in not2() argument 184 return binary_negate<_Predicate>(__pred); in not2()
|
H A D | _slist.c | 134 void _Slist_unique(slist<_Tp, _Alloc>& __that, _BinaryPredicate __pred) { in _Slist_unique() argument 139 if (__pred(*__ite, __STATIC_CAST(_Node*, __ite._M_node->_M_next)->_M_data)) in _Slist_unique()
|
H A D | _list.c | 139 void _S_remove_if(list<_Tp, _Alloc>& __that, _Predicate __pred) { in _S_remove_if() argument 146 if (__pred(*__first)) __that.erase(__first); in _S_remove_if()
|
H A D | _slist.h | 794 void remove_if(_Predicate __pred) { 797 if (__pred(__STATIC_CAST(_Node*, __cur->_M_next)->_M_data)) 805 void unique(_BinaryPredicate __pred) 806 { _STLP_PRIV _Slist_unique(*this, __pred); }
|
H A D | _list.h | 236 void _S_remove_if(list<_Tp, _Alloc>& __that, _Predicate __pred); 665 void remove_if(_Predicate __pred) 666 { _STLP_PRIV _S_remove_if(*this, __pred); }
|
H A D | _algobase.h | 670 _InputIter find_if(_InputIter __first, _InputIter __last, _Predicate __pred);
|
/reactos/sdk/include/c++/stlport/stl/pointers/ |
H A D | _tools.h | 437 _UnaryPredWrapper (_UnaryPredicate const& __pred) : _M_pred(__pred) {} 451 _BinaryPredWrapper (_BinaryPredicate const& __pred) : _M_pred(__pred) {}
|
H A D | _slist.h | 390 void remove_if(_Predicate __pred) in remove_if() argument 391 { _M_impl.remove_if(_STLP_PRIV _UnaryPredWrapper<_StorageType, _Tp, _Predicate>(__pred)); } in remove_if() 394 void unique(_BinaryPredicate __pred) in unique() argument 395 { _M_impl.unique(_STLP_PRIV _BinaryPredWrapper<_StorageType, _Tp, _BinaryPredicate>(__pred)); } in unique()
|
H A D | _list.h | 310 void remove_if(_Predicate __pred) in remove_if() argument 311 { _M_impl.remove_if(_STLP_PRIV _UnaryPredWrapper<_StorageType, _Tp, _Predicate>(__pred)); } in remove_if()
|
/reactos/sdk/include/c++/stlport/stl/debug/ |
H A D | _slist.h | 551 void remove_if(_Predicate __pred) { in remove_if() argument 556 if (__pred(*__first)) { in remove_if() 565 void unique(_BinaryPredicate __pred) { in unique() argument
|
H A D | _list.h | 435 void remove_if(_Predicate __pred) { in remove_if() argument 440 if (__pred(*__first)) { in remove_if()
|