HomeSort by relevance Sort by last modified time
    Searched refs:remove_if (Results 1 - 25 of 108) sorted by null

1 2 3 4 5

  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/list/list.ops/
remove_if.pass.cpp 12 // template <class Pred> void remove_if(Pred pred);
28 c.remove_if(g);
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/forwardlist/forwardlist.ops/
remove_if.pass.cpp 12 // template <class Predicate> void remove_if(Predicate pred);
32 c1.remove_if(g);
41 c1.remove_if(g);
51 c1.remove_if(g);
59 c1.remove_if(g);
69 c1.remove_if(g);
  /ndk/sources/cxx-stl/llvm-libc++/test/algorithms/alg.modifying.operations/alg.remove/
remove_if.pass.cpp 16 // remove_if(Iter first, Iter last, Pred pred);
33 int* r = std::remove_if(ia, ia+sa, std::bind2nd(std::equal_to<int>(), 2));
65 Iter r = std::remove_if(Iter(ia), Iter(ia+sa), pred());
  /external/llvm/include/llvm/ADT/
SetVector.h 135 /// V.erase(std::remove_if(V.begin(), V.end(), P), V.end());
139 /// algorithm like remove_if impossible to use.
143 bool remove_if(UnaryPredicate P) {
145 = std::remove_if(vector_.begin(), vector_.end(),
188 /// \brief A wrapper predicate designed for use with std::remove_if.
190 /// This predicate wraps a predicate suitable for use with std::remove_if to
  /external/chromium/net/base/
data_url.cc 88 temp_data.erase(std::remove_if(temp_data.begin(), temp_data.end(),
  /external/stlport/test/unit/
bind_test.cpp 56 int* p = remove_if((int*)array, (int*)array + 3, bind1st(less<int>(), 2));
ptrspec_test.cpp 151 pint_list.remove_if(unary_pred<int>());
152 pcint_list.remove_if(unary_pred<int const>());
rm_cp_test.cpp 205 remove_if((int*)numbers, (int*)numbers + 6, odd);
  /ndk/tests/device/test-gnustl-full/unit/
bind_test.cpp 56 int* p = remove_if((int*)array, (int*)array + 3, bind1st(less<int>(), 2));
ptrspec_test.cpp 151 pint_list.remove_if(unary_pred<int>());
152 pcint_list.remove_if(unary_pred<int const>());
rm_cp_test.cpp 205 remove_if((int*)numbers, (int*)numbers + 6, odd);
  /ndk/tests/device/test-stlport/unit/
bind_test.cpp 56 int* p = remove_if((int*)array, (int*)array + 3, bind1st(less<int>(), 2));
ptrspec_test.cpp 151 pint_list.remove_if(unary_pred<int>());
152 pcint_list.remove_if(unary_pred<int const>());
rm_cp_test.cpp 205 remove_if((int*)numbers, (int*)numbers + 6, odd);
  /external/clang/include/clang/AST/
DeclContextInternals.h 110 Vec.erase(std::remove_if(Vec.begin(), Vec.end(),
  /external/stlport/stlport/stl/pointers/
_list.h 310 void remove_if(_Predicate __pred) function in class:list
311 { _M_impl.remove_if(_STLP_PRIV _UnaryPredWrapper<_StorageType, _Tp, _Predicate>(__pred)); }
_slist.h 390 void remove_if(_Predicate __pred) function in class:slist
391 { _M_impl.remove_if(_STLP_PRIV _UnaryPredWrapper<_StorageType, _Tp, _Predicate>(__pred)); }
  /ndk/sources/cxx-stl/stlport/stlport/stl/pointers/
_list.h 310 void remove_if(_Predicate __pred) function in class:list
311 { _M_impl.remove_if(_STLP_PRIV _UnaryPredWrapper<_StorageType, _Tp, _Predicate>(__pred)); }
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/pointers/
_list.h 310 void remove_if(_Predicate __pred) function in class:list
311 { _M_impl.remove_if(_STLP_PRIV _UnaryPredWrapper<_StorageType, _Tp, _Predicate>(__pred)); }
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/pointers/
_list.h 310 void remove_if(_Predicate __pred) function in class:list
311 { _M_impl.remove_if(_STLP_PRIV _UnaryPredWrapper<_StorageType, _Tp, _Predicate>(__pred)); }
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/pointers/
_list.h 310 void remove_if(_Predicate __pred) function in class:list
311 { _M_impl.remove_if(_STLP_PRIV _UnaryPredWrapper<_StorageType, _Tp, _Predicate>(__pred)); }
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/pointers/
_list.h 310 void remove_if(_Predicate __pred) function in class:list
311 { _M_impl.remove_if(_STLP_PRIV _UnaryPredWrapper<_StorageType, _Tp, _Predicate>(__pred)); }
  /external/chromium/chrome/browser/autofill/
personal_data_manager.cc 355 std::remove_if(profiles->begin(), profiles->end(),
420 std::remove_if(
515 std::remove_if(profiles.begin(), profiles.end(),
573 std::remove_if(credit_cards.begin(), credit_cards.end(),
  /external/chromium/net/http/
http_auth_cache.cc 49 // Functor used by remove_if.
167 paths_.remove_if(IsEnclosedBy(parent_dir));
  /external/llvm/lib/Transforms/Scalar/
DeadStoreElimination.cpp 822 DeadStackObjects.remove_if(Pred);
899 DeadStackObjects.remove_if(Pred);

Completed in 9202 milliseconds

1 2 3 4 5