Searched refs:__binary_pred (Results 1 – 8 of 8) sorted by relevance
/external/stlport/stlport/stl/ |
D | _algo.h | 83 _BinaryPredicate __binary_pred) { in adjacent_find() argument 89 if (__binary_pred(*__first, *__next)) in adjacent_find() 133 _Integer __count, const _Tp& __val, _BinaryPred __binary_pred); 295 _BinaryPredicate __binary_pred); 305 _BinaryPredicate __binary_pred) { in unique() argument 306 __first = adjacent_find(__first, __last, __binary_pred); in unique() 307 return unique_copy(__first, __last, __first, __binary_pred); in unique()
|
D | _algo.c | 262 _BinaryPred __binary_pred) { in search_n() argument 266 return _STLP_PRIV __search_n(__first, __last, __count, __val, __binary_pred, in search_n() 297 _BinaryPredicate __binary_pred, _Tp*) { in __unique_copy() argument 301 if (!__binary_pred(__val, *__first)) { in __unique_copy() 311 _BinaryPredicate __binary_pred, const output_iterator_tag &) { in __unique_copy() argument 312 return _STLP_PRIV __unique_copy(__first, __last, __result, __binary_pred, in __unique_copy() 319 _BinaryPredicate __binary_pred, const forward_iterator_tag &) { in __unique_copy() argument 322 if (!__binary_pred(*__result, *__first)) *++__result = *__first; in __unique_copy() 330 _BidirectionalIterator __result, _BinaryPredicate __binary_pred, in __unique_copy() argument 332 return _STLP_PRIV __unique_copy(__first, __last, __result, __binary_pred, forward_iterator_tag()); in __unique_copy() [all …]
|
D | _list.c | 152 void _S_unique(list<_Tp, _Alloc>& __that, _BinaryPredicate __binary_pred) { in _S_unique() argument 159 if (__binary_pred(*__first, *__next)) in _S_unique()
|
D | _algobase.h | 539 _BinaryPredicate __binary_pred) { in mismatch() argument 542 while (__first1 != __last1 && __binary_pred(*__first1, *__first2)) { in mismatch() 564 _InputIter2 __first2, _BinaryPredicate __binary_pred) { in equal() argument 568 if (!__binary_pred(*__first1, *__first2)) in equal()
|
D | _list.h | 239 void _S_unique(list<_Tp, _Alloc>& __that, _BinaryPredicate __binary_pred); 668 void unique(_BinaryPredicate __binary_pred) 669 { _STLP_PRIV _S_unique(*this, __binary_pred); }
|
D | _slist.h | 206 void _Slist_unique(slist<_Tp, _Alloc>& __that, _BinaryPredicate __binary_pred);
|
/external/stlport/stlport/stl/debug/ |
D | _list.h | 449 void unique(_BinaryPredicate __binary_pred) { in unique() argument 454 if (__binary_pred(*__first, *__next)) { in unique()
|
D | _slist.h | 570 if (__binary_pred(*__first, *__next)) { in unique()
|