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

1 2 3 4 5 6

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.ops/
remove_if.pass.cpp 12 // template <class Pred> void remove_if(Pred pred);
31 c.remove_if(g);
39 c.remove_if(g);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.ops/
remove_if.pass.cpp 12 // template <class Predicate> void remove_if(Predicate pred);
34 c1.remove_if(g);
43 c1.remove_if(g);
53 c1.remove_if(g);
61 c1.remove_if(g);
71 c1.remove_if(g);
82 c1.remove_if(g);
91 c1.remove_if(g);
101 c1.remove_if(g);
109 c1.remove_if(g)
    [all...]
  /external/libcxx/test/std/containers/sequences/list/list.ops/
remove_if.pass.cpp 12 // template <class Pred> void remove_if(Pred pred);
40 c.remove_if(std::ref(cp));
49 c.remove_if(std::ref(cp));
59 c.remove_if(std::ref(cp));
  /external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/
remove_if.pass.cpp 12 // template <class Predicate> void remove_if(Predicate pred);
38 c1.remove_if(std::ref(cp));
50 c1.remove_if(std::ref(cp));
63 c1.remove_if(std::ref(cp));
74 c1.remove_if(std::ref(cp));
87 c1.remove_if(std::ref(cp));
101 c1.remove_if(std::ref(cp));
113 c1.remove_if(std::ref(cp));
126 c1.remove_if(std::ref(cp));
137 c1.remove_if(std::ref(cp))
    [all...]
  /external/libcxx/test/std/algorithms/alg.modifying.operations/alg.remove/
remove_if.pass.cpp 16 // remove_if(Iter first, Iter last, Pred pred);
36 // int* r = std::remove_if(ia, ia+sa, std::bind2nd(std::equal_to<int>(), 2));
38 int* r = std::remove_if(ia, ia+sa, std::ref(cp));
71 Iter r = std::remove_if(Iter(ia), Iter(ia+sa), pred());
  /frameworks/base/tools/split-select/
Rule_test.cpp 68 expected.erase(std::remove_if(expected.begin(), expected.end(), ::isspace), expected.end());
72 result.erase(std::remove_if(result.begin(), result.end(), ::isspace), result.end());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/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/skia/src/core/
SkRecord.cpp 39 Record* noops = std::remove_if(fRecords.get(), fRecords.get() + fCount,
  /bionic/linker/tests/
linked_list_test.cpp 78 list.remove_if([] (const char* c) {
87 list.remove_if([] (const char* c) {
125 list.remove_if([](const char* c) {
144 list.remove_if([](const char* c) {
181 list.remove_if([](const char* c) {
190 list.remove_if([](const char* c) {
  /bionic/libc/bionic/
pthread_atfork.cpp 77 void remove_if(F predicate) { function in class:atfork_list_t
176 g_atfork_list.remove_if([&](const atfork_t* entry) {
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
remove_if.hpp 14 // $Id: remove_if.hpp 49267 2008-10-11 06:19:02Z agurtovoy $
79 BOOST_MPL_AUX_INSERTER_ALGORITHM_DEF(3, remove_if)
  /external/llvm/include/llvm/ADT/
SetVector.h 160 /// V.erase(std::remove_if(V.begin(), V.end(), P), V.end());
164 /// algorithm like remove_if impossible to use.
168 bool remove_if(UnaryPredicate P) {
170 = std::remove_if(vector_.begin(), vector_.end(),
212 /// \brief A wrapper predicate designed for use with std::remove_if.
214 /// This predicate wraps a predicate suitable for use with std::remove_if to
MapVector.h 133 /// usually better to use \a remove_if() if possible.
165 template <class Predicate> void remove_if(Predicate Pred);
170 void MapVector<KeyT, ValueT, MapType, VectorType>::remove_if(Function Pred) { function in class:llvm::MapVector
  /external/v8/src/compiler/
gap-resolver.cc 30 std::remove_if(moves->begin(), moves->end(), std::ptr_fun(IsRedundant));
  /external/opencv3/modules/features2d/src/
keypoint.cpp 112 keypoints.erase( std::remove_if(keypoints.begin(), keypoints.end(),
139 keypoints.erase( std::remove_if(keypoints.begin(), keypoints.end(), SizePredicate(minSize, maxSize)),
162 keypoints.erase(std::remove_if(keypoints.begin(), keypoints.end(), MaskPredicate(mask)), keypoints.end());
  /system/security/keystore/
auth_token_table.cpp 38 typename Container::iterator remove_if(Container& container, Predicate pred) { function in namespace:keymaster
39 return std::remove_if(container.begin(), container.end(), pred);
154 entries_.erase(remove_if(entries_, [&](Entry& e) { return entry.Supersedes(e); }),
  /external/llvm/unittests/ADT/
MapVectorTest.cpp 106 TEST(MapVectorTest, remove_if) {
117 MV.remove_if([](const std::pair<int, int> &Val) { return Val.second % 2; });
215 TEST(SmallMapVectorSmallTest, remove_if) {
226 MV.remove_if([](const std::pair<int, int> &Val) { return Val.second % 2; });
324 TEST(SmallMapVectorLargeTest, remove_if) {
335 MV.remove_if([](const std::pair<int, int> &Val) { return Val.second % 2; });
  /external/clang/lib/Tooling/
CompilationDatabase.cpp 242 Args.erase(std::remove_if(Args.begin(), Args.end(),
269 std::vector<const char *>::iterator End = std::remove_if(
273 End = std::remove_if(Args.begin(), End, MatchesAny(DiagClient.UnusedInputs));
  /ndk/tests/device/test-gnustl-full/unit/
bind_test.cpp 56 int* p = remove_if((int*)array, (int*)array + 3, bind1st(less<int>(), 2));
  /ndk/tests/device/test-stlport/unit/
bind_test.cpp 56 int* p = remove_if((int*)array, (int*)array + 3, bind1st(less<int>(), 2));
  /external/opencv3/modules/videostab/src/cuda/
global_motion.cu 61 return (int)(thrust::remove_if(thrust::make_zip_iterator(thrust::make_tuple(dpoints0, dpoints1)),
  /external/llvm/lib/CodeGen/
LiveDebugValues.cpp 196 std::remove_if(OpenRanges.begin(), OpenRanges.end(),
217 OpenRanges.erase(std::remove_if(OpenRanges.begin(), OpenRanges.end(),
298 std::remove_if(InLocsT.begin(), InLocsT.end(), [&](VarLoc &ILT) {
  /external/clang/include/clang/AST/
DeclContextInternals.h 133 Vec.erase(std::remove_if(Vec.begin(), Vec.end(),
  /external/webrtc/webrtc/modules/utility/source/
process_thread_impl.cc 168 modules_.remove_if([&module](const ModuleCallback& m) {
  /frameworks/base/libs/hwui/
AnimatorManager.cpp 147 auto newEnd = std::remove_if(mAnimators.begin(), mAnimators.end(), functor);

Completed in 9788 milliseconds

1 2 3 4 5 6