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

1 2 3 4 5 6 7

  /external/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);
Android.mk 63 test_name := containers/sequences/list/list.ops/remove_if
64 test_src := remove_if.pass.cpp
  /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);
  /external/chromium_org/cc/base/
scoped_ptr_algorithm.h 13 ForwardIterator remove_if( function in namespace:cc
  /external/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...]
Android.mk 59 test_name := containers/sequences/forwardlist/forwardlist.ops/remove_if
60 test_src := remove_if.pass.cpp
  /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/chromium_org/printing/
printing_utils.cc 21 std::remove_if(no_controls.begin(), no_controls.end(), &u_iscntrl),
  /external/libcxx/test/algorithms/alg.modifying.operations/alg.remove/
Android.mk 31 test_name := algorithms/alg.modifying.operations/alg.remove/remove_if
32 test_src := remove_if.pass.cpp
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());
  /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/chromium_org/net/cert/
nss_cert_database_chromeos.cc 65 std::remove_if(
81 certs->erase(std::remove_if(
  /bionic/linker/tests/
linked_list_test.cpp 78 list.remove_if([] (const char* c) {
87 list.remove_if([] (const char* c) {
  /external/chromium_org/chromeos/network/
client_cert_util.cc 160 matching_certs.remove_if(IssuerFilter(pattern.issuer()));
166 matching_certs.remove_if(SubjectFilter(pattern.subject()));
172 matching_certs.remove_if(IssuerCaFilter(pattern.issuer_ca_pems()));
182 matching_certs.remove_if(private_filter);
  /external/chromium_org/content/renderer/media/
tagged_list.h 55 tagged_items_.remove_if(predicate);
  /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 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_org/net/ssl/
client_cert_store_chromeos.cc 50 std::remove_if(
  /external/clang/lib/Tooling/
CompilationDatabase.cpp 242 Args.erase(std::remove_if(Args.begin(), Args.end(),
273 std::vector<const char *>::iterator End = std::remove_if(
277 End = std::remove_if(Args.begin(), End, MatchesAny(DiagClient.UnusedInputs));
  /bionic/linker/
linked_list.h 95 void remove_if(F&& predicate) { function in class:LinkedList
  /external/chromium_org/net/base/
data_url.cc 97 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));
  /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/chromium_org/ash/wm/
mru_window_tracker.cc 85 std::remove_if(

Completed in 1233 milliseconds

1 2 3 4 5 6 7