/external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/ |
D | remove_if.pass.cpp | 39 c1.remove_if(std::ref(cp)); in main() 51 c1.remove_if(std::ref(cp)); in main() 64 c1.remove_if(std::ref(cp)); in main() 75 c1.remove_if(std::ref(cp)); in main() 88 c1.remove_if(std::ref(cp)); in main() 102 c1.remove_if(std::ref(cp)); in main() 114 c1.remove_if(std::ref(cp)); in main() 127 c1.remove_if(std::ref(cp)); in main() 138 c1.remove_if(std::ref(cp)); in main() 151 c1.remove_if(std::ref(cp)); in main()
|
/external/libcxx/test/std/containers/sequences/list/list.ops/ |
D | remove_if.pass.cpp | 40 c.remove_if(std::ref(cp)); in main() 49 c.remove_if(std::ref(cp)); in main() 59 c.remove_if(std::ref(cp)); in main()
|
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.remove/ |
D | remove_if.pass.cpp | 38 int* r = std::remove_if(ia, ia+sa, std::ref(cp)); in test() 71 Iter r = std::remove_if(Iter(ia), Iter(ia+sa), pred()); in test1()
|
/external/llvm/unittests/ADT/ |
D | MapVectorTest.cpp | 106 TEST(MapVectorTest, remove_if) { in TEST() argument 117 MV.remove_if([](const std::pair<int, int> &Val) { return Val.second % 2; }); in TEST() 215 TEST(SmallMapVectorSmallTest, remove_if) { in TEST() argument 226 MV.remove_if([](const std::pair<int, int> &Val) { return Val.second % 2; }); in TEST() 324 TEST(SmallMapVectorLargeTest, remove_if) { in TEST() argument 335 MV.remove_if([](const std::pair<int, int> &Val) { return Val.second % 2; }); in TEST()
|
/external/clang/lib/Tooling/ |
D | CompilationDatabase.cpp | 241 Args.erase(std::remove_if(Args.begin(), Args.end(), in stripPositionalArgs() 268 std::vector<const char *>::iterator End = std::remove_if( in stripPositionalArgs() 272 End = std::remove_if(Args.begin(), End, MatchesAny(DiagClient.UnusedInputs)); in stripPositionalArgs()
|
/external/skia/src/core/ |
D | SkRecord.cpp | 34 Record* noops = std::remove_if(fRecords.get(), fRecords.get() + fCount, in defrag()
|
/external/llvm/include/llvm/ADT/ |
D | SetVector.h | 187 bool remove_if(UnaryPredicate P) { in remove_if() function 189 = std::remove_if(vector_.begin(), vector_.end(), in remove_if()
|
D | MapVector.h | 165 template <class Predicate> void remove_if(Predicate Pred); 170 void MapVector<KeyT, ValueT, MapType, VectorType>::remove_if(Function Pred) { in remove_if() function
|
D | PriorityWorklist.h | 159 typename VectorT::iterator E = std::remove_if( in erase_if()
|
D | STLExtras.h | 411 auto remove_if(R &&Range, UnaryPredicate &&P) -> decltype(Range.begin()) { 412 return std::remove_if(Range.begin(), Range.end(), P);
|
/external/libmojo/mojo/public/cpp/bindings/ |
D | interface_ptr_set.h | 76 ptrs_.erase(std::remove_if(ptrs_.begin(), ptrs_.end(), in ClearNullPtrs()
|
D | binding_set.h | 97 bindings_.erase(std::remove_if(bindings_.begin(), bindings_.end(), in OnConnectionError()
|
/external/clang/lib/Serialization/ |
D | ModuleManager.cpp | 208 Chain[i]->ImportedBy.remove_if(IsVictim); in removeModules() 210 Roots.erase(std::remove_if(Roots.begin(), Roots.end(), IsVictim), in removeModules()
|
D | MultiOnDiskHashTable.h | 123 Tables.erase(std::remove_if(tables().begin().getCurrent(), Tables.end(), in removeOverriddenTables()
|
/external/llvm/lib/Transforms/Scalar/ |
D | LoopLoadElimination.cpp | 189 Candidates.remove_if([&](const StoreToLoadForwardingCandidate &C) { in findStoreToLoadDependences() 256 Candidates.remove_if([&](const StoreToLoadForwardingCandidate &Cand) { in removeDependencesFromMultipleStores()
|
D | SROA.cpp | 435 std::remove_if( in advance() 999 Slices.erase(std::remove_if(Slices.begin(), Slices.end(), in AllocaSlices() 1818 CandidateTys.erase(std::remove_if(CandidateTys.begin(), CandidateTys.end(), in isVectorPromotionViable() 3459 std::remove_if(Stores.begin(), Stores.end(), in presplitLoadsAndStores() 3500 Stores.erase(std::remove_if(Stores.begin(), Stores.end(), in presplitLoadsAndStores() 3509 Loads.erase(std::remove_if(Loads.begin(), Loads.end(), in presplitLoadsAndStores() 3773 AS.erase(std::remove_if(AS.begin(), AS.end(), [](const Slice &S) { in presplitLoadsAndStores() 3790 std::remove_if( in presplitLoadsAndStores() 4224 Worklist.remove_if(IsInSet); in runImpl() 4225 PostPromotionWorklist.remove_if(IsInSet); in runImpl() [all …]
|
/external/webrtc/webrtc/modules/utility/source/ |
D | process_thread_impl.cc | 168 modules_.remove_if([&module](const ModuleCallback& m) { in DeRegisterModule()
|
/external/llvm/utils/TableGen/ |
D | CodeGenDAGPatterns.cpp | 242 TypeVec.erase(std::remove_if(TypeVec.begin(), TypeVec.end(), in EnforceInteger() 268 TypeVec.erase(std::remove_if(TypeVec.begin(), TypeVec.end(), in EnforceFloatingPoint() 295 TypeVec.erase(std::remove_if(TypeVec.begin(), TypeVec.end(), in EnforceScalar() 320 TypeVec.erase(std::remove_if(TypeVec.begin(), TypeVec.end(), in EnforceVector() 398 auto I = std::remove_if(Other.TypeVec.begin(), Other.TypeVec.end(), in EnforceSmallerThan() 431 auto I = std::remove_if(TypeVec.begin(), TypeVec.end(), in EnforceSmallerThan() 463 auto I = std::remove_if(TypeVec.begin(), TypeVec.end(), in EnforceVectorEltTypeIs() 550 auto I = std::remove_if(VTOperand.TypeVec.begin(), VTOperand.TypeVec.end(), in EnforceVectorSubVectorTypeIs() 574 auto I = std::remove_if(TypeVec.begin(), TypeVec.end(), in EnforceVectorSubVectorTypeIs() 612 auto I = std::remove_if(VTOperand.TypeVec.begin(), VTOperand.TypeVec.end(), in EnforceVectorSameNumElts() [all …]
|
/external/clang/include/clang/AST/ |
D | DeclContextInternals.h | 133 Vec.erase(std::remove_if(Vec.begin(), Vec.end(), in removeExternalDecls()
|
/external/llvm/lib/ExecutionEngine/ |
D | SectionMemoryManager.cpp | 199 std::remove_if(MemGroup.FreeMem.begin(), MemGroup.FreeMem.end(), in applyMemoryGroupPermissions()
|
/external/clang/lib/AST/ |
D | CXXInheritance.cpp | 323 Paths.Paths.remove_if([&Paths](const CXXBasePath &Path) { in lookupInBases() 655 std::remove_if(Overriding.begin(), Overriding.end(), IsHidden), in getFinalOverriders()
|
/external/protobuf/conformance/ |
D | conformance_test_runner.cc | 267 line.erase(std::remove_if(line.begin(), line.end(), ::isspace), in ParseFailureList()
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | MallocOverflowSecurityChecker.cpp | 157 toScanFor.erase(std::remove_if(toScanFor.begin(), toScanFor.end(), P), in Erase()
|
/external/clang/lib/Driver/ |
D | Multilib.cpp | 288 Ms.erase(std::remove_if(Ms.begin(), Ms.end(), F), Ms.end()); in filterInPlace()
|
/external/webrtc/talk/media/base/ |
D | streamparams.h | 306 auto iter(std::remove_if(streams->begin(), streams->end(), condition)); in RemoveStream()
|