Searched refs:__binary_pred (Results 1 - 8 of 8) sorted by relevance

/external/stlport/stlport/stl/
H A D_algo.h83 _BinaryPredicate __binary_pred) {
89 if (__binary_pred(*__first, *__next))
133 _Integer __count, const _Tp& __val, _BinaryPred __binary_pred);
295 _BinaryPredicate __binary_pred);
305 _BinaryPredicate __binary_pred) {
306 __first = adjacent_find(__first, __last, __binary_pred);
307 return unique_copy(__first, __last, __first, __binary_pred);
82 adjacent_find(_ForwardIter __first, _ForwardIter __last, _BinaryPredicate __binary_pred) argument
304 unique(_ForwardIter __first, _ForwardIter __last, _BinaryPredicate __binary_pred) argument
H A D_list.c152 void _S_unique(list<_Tp, _Alloc>& __that, _BinaryPredicate __binary_pred) { argument
159 if (__binary_pred(*__first, *__next))
H A D_algo.c262 _BinaryPred __binary_pred) {
266 return _STLP_PRIV __search_n(__first, __last, __count, __val, __binary_pred,
297 _BinaryPredicate __binary_pred, _Tp*) {
301 if (!__binary_pred(__val, *__first)) {
311 _BinaryPredicate __binary_pred, const output_iterator_tag &) {
312 return _STLP_PRIV __unique_copy(__first, __last, __result, __binary_pred,
319 _BinaryPredicate __binary_pred, const forward_iterator_tag &) {
322 if (!__binary_pred(*__result, *__first)) *++__result = *__first;
330 _BidirectionalIterator __result, _BinaryPredicate __binary_pred,
332 return _STLP_PRIV __unique_copy(__first, __last, __result, __binary_pred, forward_iterator_ta
260 search_n(_ForwardIter __first, _ForwardIter __last, _Integer __count, const _Tp& __val, _BinaryPred __binary_pred) argument
295 __unique_copy(_InputIterator __first, _InputIterator __last, _OutputIterator __result, _BinaryPredicate __binary_pred, _Tp*) argument
310 __unique_copy(_InputIter __first, _InputIter __last,_OutputIter __result, _BinaryPredicate __binary_pred, const output_iterator_tag &) argument
318 __unique_copy(_InputIter __first, _InputIter __last, _ForwardIter __result, _BinaryPredicate __binary_pred, const forward_iterator_tag &) argument
329 __unique_copy(_InputIterator __first, _InputIterator __last, _BidirectionalIterator __result, _BinaryPredicate __binary_pred, const bidirectional_iterator_tag &) argument
337 __unique_copy(_InputIterator __first, _InputIterator __last, _RandomAccessIterator __result, _BinaryPredicate __binary_pred, const random_access_iterator_tag &) argument
358 unique_copy(_InputIter __first, _InputIter __last,_OutputIter __result, _BinaryPredicate __binary_pred) argument
[all...]
H A D_algobase.h539 _BinaryPredicate __binary_pred) {
542 while (__first1 != __last1 && __binary_pred(*__first1, *__first2)) {
564 _InputIter2 __first2, _BinaryPredicate __binary_pred) {
568 if (!__binary_pred(*__first1, *__first2))
536 mismatch(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _BinaryPredicate __binary_pred) argument
563 equal(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _BinaryPredicate __binary_pred) argument
H A D_list.h239 void _S_unique(list<_Tp, _Alloc>& __that, _BinaryPredicate __binary_pred);
668 void unique(_BinaryPredicate __binary_pred) argument
669 { _STLP_PRIV _S_unique(*this, __binary_pred); }
H A D_slist.h206 void _Slist_unique(slist<_Tp, _Alloc>& __that, _BinaryPredicate __binary_pred);
/external/stlport/stlport/stl/debug/
H A D_list.h449 void unique(_BinaryPredicate __binary_pred) { argument
454 if (__binary_pred(*__first, *__next)) {
H A D_slist.h570 if (__binary_pred(*__first, *__next)) {

Completed in 128 milliseconds