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

12

/freebsd-current/contrib/llvm-project/libcxx/include/__algorithm/
H A Dremove_if.h27 remove_if(_ForwardIterator __first, _ForwardIterator __last, _Predicate __pred) { function
H A Dranges_remove_if.h79 inline constexpr auto remove_if = __remove_if::__fn{}; member in namespace:ranges::__cpo
/freebsd-current/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointResolver.cpp235 worklist_end = std::remove_if(
246 worklist_end = std::remove_if(
255 worklist_end = std::remove_if(worklist_begin, worklist_end,
276 std::remove_if(std::next(first), worklist_end,
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSetVector.h229 /// V.erase(remove_if(V, P), V.end());
233 /// algorithm like remove_if impossible to use.
237 bool remove_if(UnaryPredicate P) { function
241 return llvm::remove_if(vector_, P);
243 return llvm::remove_if(vector_,
330 /// A wrapper predicate designed for use with std::remove_if.
332 /// This predicate wraps a predicate suitable for use with std::remove_if to
H A DPriorityWorklist.h185 /// V.erase(remove_if(V, P), V.end());
189 /// algorithm like remove_if impossible to use.
195 remove_if(V, TestAndEraseFromMap<UnaryPredicate>(P, M));
217 /// A wrapper predicate designed for use with std::remove_if.
219 /// This predicate wraps a predicate suitable for use with std::remove_if to
H A DMapVector.h192 /// usually better to use \a remove_if() if possible.
224 template <class Predicate> void remove_if(Predicate Pred);
229 void MapVector<KeyT, ValueT, MapType, VectorType>::remove_if(Function Pred) { function in class:llvm::MapVector
/freebsd-current/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerCommand.h121 Args.erase(std::remove_if(Args.begin(), i, IsMatch), i);
/freebsd-current/contrib/llvm-project/clang/lib/Serialization/
H A DModuleManager.cpp259 I->Imports.remove_if(IsVictim);
260 I->ImportedBy.remove_if(IsVictim);
H A DMultiOnDiskHashTable.h139 Tables.erase(std::remove_if(tables().begin().getCurrent(), Tables.end(),
/freebsd-current/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachinePipeliner.h361 template <typename UnaryPredicate> bool remove_if(UnaryPredicate P) { function in class:llvm::NodeSet
362 return Nodes.remove_if(P);
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopLoadElimination.cpp232 Candidates.remove_if([&](const StoreToLoadForwardingCandidate &C) {
299 Candidates.remove_if([&](const StoreToLoadForwardingCandidate &Cand) {
H A DLoopDistribute.cpp403 PartitionContainer.remove_if(
/freebsd-current/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DSVEIntrinsicOpts.cpp152 PTrues.remove_if(isPTruePromoted);
/freebsd-current/contrib/llvm-project/lldb/source/DataFormatters/
H A DTypeCategoryMap.cpp87 m_active_categories.remove_if(delete_matching_categories(category));
/freebsd-current/contrib/llvm-project/libcxx/modules/std/
H A Dalgorithm.inc283 using std::remove_if;
287 using std::ranges::remove_if;
/freebsd-current/usr.bin/dtc/
H A Dfdt.hh668 children.erase(std::remove_if(children.begin(), children.end(), predicate), children.end());
H A Dfdt.cc1109 children.erase(std::remove_if(children.begin(), children.end(),
1124 props.erase(std::remove_if(props.begin(), props.end(),
/freebsd-current/contrib/llvm-project/clang/lib/Tooling/
H A DCompilationDatabase.cpp312 llvm::remove_if(Args, [&](StringRef S) {
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DInliner.cpp445 std::remove_if(Calls.begin() + I + 1, Calls.end(),
H A DHotColdSplitting.cpp599 auto RegionStartIt = remove_if(Blocks, [&](const BlockTy &Block) {
/freebsd-current/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonGenPredicate.cpp529 PUsers.remove_if(Done);
/freebsd-current/contrib/llvm-project/clang/lib/AST/
H A DCXXInheritance.cpp330 Paths.Paths.remove_if([&Paths](const CXXBasePath &Path) {
672 // FIXME: IsHidden reads from Overriding from the middle of a remove_if
/freebsd-current/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIFixSGPRCopies.cpp981 Info->Siblings.remove_if([&](unsigned ID) { return ID == Info->ID; });
1038 SI.Siblings.remove_if([&](unsigned ID) { return ID == C.ID; });
1043 // TODO: MapVector::erase is inefficient. Do bulk removal with remove_if
/freebsd-current/contrib/llvm-project/llvm/lib/IR/
H A DMetadata.cpp1119 MDs.remove_if([&](Metadata *MD) { return !BSet.count(MD); });
1543 Info.remove_if([Pred](const MDAttachments::Attachment &I) {
/freebsd-current/contrib/llvm-project/llvm/lib/MC/
H A DMCContext.cpp1005 SectionsForRanges.remove_if(

Completed in 327 milliseconds

12