/external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/ |
D | remove_if.pass.cpp | 38 c1.remove_if(std::ref(cp)); in main() 50 c1.remove_if(std::ref(cp)); in main() 63 c1.remove_if(std::ref(cp)); in main() 74 c1.remove_if(std::ref(cp)); in main() 87 c1.remove_if(std::ref(cp)); in main() 101 c1.remove_if(std::ref(cp)); in main() 113 c1.remove_if(std::ref(cp)); in main() 126 c1.remove_if(std::ref(cp)); in main() 137 c1.remove_if(std::ref(cp)); in main() 150 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 | 242 Args.erase(std::remove_if(Args.begin(), Args.end(), in stripPositionalArgs() 269 std::vector<const char *>::iterator End = std::remove_if( in stripPositionalArgs() 273 End = std::remove_if(Args.begin(), End, MatchesAny(DiagClient.UnusedInputs)); in stripPositionalArgs()
|
/external/llvm/include/llvm/ADT/ |
D | SetVector.h | 168 bool remove_if(UnaryPredicate P) { in remove_if() function 170 = 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
|
/external/skia/src/core/ |
D | SkRecord.cpp | 39 Record* noops = std::remove_if(fRecords.get(), fRecords.get() + fCount, in defrag()
|
/external/llvm/lib/CodeGen/ |
D | LiveDebugValues.cpp | 196 std::remove_if(OpenRanges.begin(), OpenRanges.end(), in transferDebugValue() 217 OpenRanges.erase(std::remove_if(OpenRanges.begin(), OpenRanges.end(), in transferRegisterDef() 298 std::remove_if(InLocsT.begin(), InLocsT.end(), [&](VarLoc &ILT) { in join()
|
/external/v8/src/compiler/ |
D | gap-resolver.cc | 30 std::remove_if(moves->begin(), moves->end(), std::ptr_fun(IsRedundant)); in Resolve()
|
/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/webrtc/webrtc/modules/utility/source/ |
D | process_thread_impl.cc | 168 modules_.remove_if([&module](const ModuleCallback& m) { in DeRegisterModule()
|
/external/llvm/lib/Transforms/Scalar/ |
D | LoopLoadElimination.cpp | 169 Candidates.remove_if([&](const StoreToLoadForwardingCandidate &C) { in findStoreToLoadDependences() 236 Candidates.remove_if([&](const StoreToLoadForwardingCandidate &Cand) { in removeDependencesFromMultipleStores()
|
D | SROA.cpp | 448 std::remove_if( in advance() 1012 Slices.erase(std::remove_if(Slices.begin(), Slices.end(), in AllocaSlices() 1834 CandidateTys.erase(std::remove_if(CandidateTys.begin(), CandidateTys.end(), in isVectorPromotionViable() 3466 std::remove_if(Stores.begin(), Stores.end(), in presplitLoadsAndStores() 3507 Stores.erase(std::remove_if(Stores.begin(), Stores.end(), in presplitLoadsAndStores() 3516 Loads.erase(std::remove_if(Loads.begin(), Loads.end(), in presplitLoadsAndStores() 3780 AS.erase(std::remove_if(AS.begin(), AS.end(), [](const Slice &S) { in presplitLoadsAndStores() 3797 std::remove_if( in presplitLoadsAndStores() 4224 Worklist.remove_if(IsInSet); in runImpl() 4225 PostPromotionWorklist.remove_if(IsInSet); in runImpl() [all …]
|
D | DeadStoreElimination.cpp | 888 DeadStackObjects.remove_if([&](Value *I) { in handleEndBlock() 956 DeadStackObjects.remove_if([&](Value *I) { in RemoveAccessedObjects()
|
/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/llvm/lib/ExecutionEngine/ |
D | SectionMemoryManager.cpp | 202 std::remove_if(MemGroup.FreeMem.begin(), MemGroup.FreeMem.end(), in applyMemoryGroupPermissions()
|
/external/clang/include/clang/AST/ |
D | DeclContextInternals.h | 133 Vec.erase(std::remove_if(Vec.begin(), Vec.end(), in removeExternalDecls()
|
/external/clang/lib/AST/ |
D | CXXInheritance.cpp | 323 Paths.Paths.remove_if([&Paths](const CXXBasePath &Path) { in lookupInBases() 640 std::remove_if(Overriding.begin(), Overriding.end(), IsHidden), in getFinalOverriders()
|
/external/lldb/source/DataFormatters/ |
D | TypeCategoryMap.cpp | 112 m_active_categories.remove_if(delete_matching_categories(category)); in Disable()
|
/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()
|
/external/dbus-binding-generator/chromeos-dbus-bindings/ |
D | xml_interface_parser.cc | 92 auto p = std::remove_if(interfaces_.begin(), interfaces_.end(), condition); in ParseXmlInterfaceFile()
|
/external/webrtc/webrtc/base/ |
D | nat_unittest.cc | 210 networks.erase(std::remove_if(networks.begin(), networks.end(), in TestPhysicalInternal()
|