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

1234

/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/COFF/
H A DObject.cpp42 std::remove_if(std::begin(Symbols), std::end(Symbols),
95 std::remove_if(std::begin(Sections), std::end(Sections),
106 std::remove_if(
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/
H A DObject.cpp21 std::remove_if(std::begin(Symbols), std::end(Symbols), ToRemove),
27 LC.Sections.erase(std::remove_if(std::begin(LC.Sections),
/freebsd-11-stable/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,
H A DBreakpointList.cpp105 std::remove_if(m_breakpoints.begin(), m_breakpoints.end(),
/freebsd-11-stable/contrib/libstdc++/include/backward/
H A Dalgo.h86 using std::remove_if;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSetVector.h191 /// V.erase(remove_if(V, P), V.end());
195 /// algorithm like remove_if impossible to use.
199 bool remove_if(UnaryPredicate P) {
201 llvm::remove_if(vector_, TestAndEraseFromSet<UnaryPredicate>(P, set_));
267 /// A wrapper predicate designed for use with std::remove_if.
269 /// This predicate wraps a predicate suitable for use with std::remove_if to
H A DPriorityWorklist.h186 /// V.erase(remove_if(V, P), V.end());
190 /// algorithm like remove_if impossible to use.
196 remove_if(V, TestAndEraseFromMap<UnaryPredicate>(P, M));
218 /// A wrapper predicate designed for use with std::remove_if.
220 /// This predicate wraps a predicate suitable for use with std::remove_if to
H A DMapVector.h172 /// usually better to use \a remove_if() if possible.
204 template <class Predicate> void remove_if(Predicate Pred);
209 void MapVector<KeyT, ValueT, MapType, VectorType>::remove_if(Function Pred) { function in class:llvm::MapVector
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/
H A DCompilationDatabase.cpp297 Args.erase(std::remove_if(Args.begin(), Args.end(), FilterUnusedFlags()),
328 std::vector<const char *>::iterator End = std::remove_if(
332 End = std::remove_if(Args.begin(), End, MatchesAny(DiagClient.UnusedInputs));
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DModuleManager.cpp240 I->Imports.remove_if(IsVictim);
241 I->ImportedBy.remove_if(IsVictim);
243 Roots.erase(std::remove_if(Roots.begin(), Roots.end(), IsVictim),
H A DMultiOnDiskHashTable.h139 Tables.erase(std::remove_if(tables().begin().getCurrent(), Tables.end(),
/freebsd-11-stable/contrib/llvm-project/lld/lib/Core/
H A DResolver.cpp383 _atoms.erase(std::remove_if(_atoms.begin(), _atoms.end(),
400 std::remove_if(undefinedAtoms.begin(), undefinedAtoms.end(),
443 _atoms.erase(std::remove_if(_atoms.begin(), _atoms.end(),
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerCommand.h120 Args.erase(std::remove_if(Args.begin(), i, IsMatch), i);
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Core/
H A DSimple.h79 auto newEnd = std::remove_if(atoms.begin(), atoms.end(),
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DSectionMemoryManager.cpp213 MemGroup.FreeMem.erase(remove_if(MemGroup.FreeMem,
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DDeclContextInternals.h133 Vec.erase(std::remove_if(Vec.begin(), Vec.end(),
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/
H A DCloneDetection.h239 std::remove_if(CloneGroups.begin(), CloneGroups.end(), Filter),
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DAssumptionCache.cpp136 remove_if(AssumeHandles, [CI](WeakTrackingVH &VH) { return CI == VH; }),
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachinePipeliner.h343 template <typename UnaryPredicate> bool remove_if(UnaryPredicate P) { function in class:llvm::NodeSet
344 return Nodes.remove_if(P);
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DCXXInheritance.cpp363 Paths.Paths.remove_if([&Paths](const CXXBasePath &Path) {
761 // FIXME: IsHidden reads from Overriding from the middle of a remove_if
764 std::remove_if(Overriding.begin(), Overriding.end(), IsHidden),
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopLoadElimination.cpp225 Candidates.remove_if([&](const StoreToLoadForwardingCandidate &C) {
292 Candidates.remove_if([&](const StoreToLoadForwardingCandidate &Cand) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DMallocOverflowSecurityChecker.cpp156 toScanFor.erase(std::remove_if(toScanFor.begin(), toScanFor.end(), P),
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/
H A DMultilib.cpp302 Ms.erase(std::remove_if(Ms.begin(), Ms.end(), F), Ms.end());
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/
H A DTypeCategoryMap.cpp88 m_active_categories.remove_if(delete_matching_categories(category));
/freebsd-11-stable/usr.bin/dtc/
H A Dfdt.hh670 children.erase(std::remove_if(children.begin(), children.end(), predicate), children.end());

Completed in 159 milliseconds

1234