Searched refs:remove_if (Results 1 - 25 of 62) sorted by relevance

123

/external/libcxx/test/containers/sequences/list/list.ops/
H A Dremove_if.pass.cpp12 // template <class Pred> void remove_if(Pred pred);
31 c.remove_if(g);
39 c.remove_if(g);
H A DAndroid.mk63 test_name := containers/sequences/list/list.ops/remove_if
64 test_src := remove_if.pass.cpp
/external/libcxx/test/containers/sequences/forwardlist/forwardlist.ops/
H A Dremove_if.pass.cpp12 // 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(
[all...]
H A DAndroid.mk59 test_name := containers/sequences/forwardlist/forwardlist.ops/remove_if
60 test_src := remove_if.pass.cpp
/external/chromium_org/cc/base/
H A Dscoped_ptr_algorithm.h13 ForwardIterator remove_if( function in namespace:cc
/external/chromium_org/printing/
H A Dprinting_utils.cc21 std::remove_if(no_controls.begin(), no_controls.end(), &u_iscntrl),
/external/libcxx/test/algorithms/alg.modifying.operations/alg.remove/
H A DAndroid.mk31 test_name := algorithms/alg.modifying.operations/alg.remove/remove_if
32 test_src := remove_if.pass.cpp
H A Dremove_if.pass.cpp16 // 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/
H A Dnss_cert_database_chromeos.cc70 std::remove_if(
86 certs->erase(std::remove_if(
/external/chromium_org/content/renderer/media/
H A Dtagged_list.h55 tagged_items_.remove_if(predicate);
/external/llvm/include/llvm/ADT/
H A DSetVector.h135 /// 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/clang/lib/Tooling/
H A DCompilationDatabase.cpp242 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));
/external/chromium_org/net/base/
H A Ddata_url.cc108 temp_data.erase(std::remove_if(temp_data.begin(), temp_data.end(),
/external/chromium_org/net/ssl/
H A Dclient_cert_store_chromeos.cc90 std::remove_if(
/external/chromium_org/v8/src/compiler/
H A Dgap-resolver.cc42 // TODO(svenpanne) Use the member version of remove_if when we use real lists.
44 std::remove_if(moves->begin(), moves->end(),
/external/stlport/test/unit/
H A Dbind_test.cpp56 int* p = remove_if((int*)array, (int*)array + 3, bind1st(less<int>(), 2));
H A Dptrspec_test.cpp151 pint_list.remove_if(unary_pred<int>());
152 pcint_list.remove_if(unary_pred<int const>());
/external/chromium_org/ash/wm/
H A Dmru_window_tracker.cc85 std::remove_if(
/external/chromium_org/chrome/browser/media_galleries/fileapi/
H A Dmedia_path_filter.cc90 std::remove_if(extensions.begin(),
/external/chromium_org/chrome/browser/spellchecker/
H A Dspellcheck_message_filter.cc119 std::remove_if(
H A Dspellcheck_message_filter_mac.cc281 std::remove_if(
/external/chromium_org/components/autofill/core/browser/
H A Dform_field.cc47 std::remove_if(remaining_fields.begin(), remaining_fields.end(),
/external/chromium_org/gpu/command_buffer/service/
H A Dcontext_group.cc282 decoders_.erase(std::remove_if(decoders_.begin(), decoders_.end(), IsNull),
288 decoders_.erase(std::remove_if(decoders_.begin(), decoders_.end(),
/external/chromium_org/cc/animation/
H A Dlayer_animation_controller.cc64 animations_.erase(cc::remove_if(&animations_,
89 cc::remove_if(&animations_,
244 animations_.erase(cc::remove_if(&animations_,
603 animations.erase(cc::remove_if(&animations,
844 animations_.erase(cc::remove_if(&animations_,
/external/stlport/stlport/stl/pointers/
H A D_list.h310 void remove_if(_Predicate __pred) function in class:list
311 { _M_impl.remove_if(_STLP_PRIV _UnaryPredWrapper<_StorageType, _Tp, _Predicate>(__pred)); }

Completed in 570 milliseconds

123