reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/IR/PassManager.h
 1182         InnerIDs.erase(llvm::remove_if(InnerIDs, [&](AnalysisKey *InnerID) {
lib/CodeGen/WinEHPrepare.cpp
  787       OldColors.erase(
tools/clang/lib/AST/ASTContext.cpp
 1054   Merged.erase(std::remove(Merged.begin(), Merged.end(), nullptr), Merged.end());
tools/clang/lib/Lex/PPMacroExpansion.cpp
  155     LeafMacros.erase(std::remove_if(LeafMacros.begin(), LeafMacros.end(),
tools/clang/lib/Serialization/MultiOnDiskHashTable.h
  139     Tables.erase(std::remove_if(tables().begin().getCurrent(), Tables.end(),
unittests/ADT/TinyPtrVectorTest.cpp
  334   this->V.erase(this->V.begin(), this->V.begin());
  336   this->V.erase(this->V.end(), this->V.end());
  338   this->V.erase(this->V.begin(), this->V.end());
  343   this->V.erase(this->V.begin(), std::next(this->V.begin(), 1));
  347   this->V.erase(std::next(this->V.begin(), 1), std::next(this->V.begin(), 2));
  351   this->V.erase(std::next(this->V.begin(), 2), std::next(this->V.begin(), 4));
  355   this->V.erase(std::next(this->V.begin(), 5), std::next(this->V.begin(), 10));
  359   this->V.erase(std::next(this->V.begin(), 13), std::next(this->V.begin(), 26));
  363   this->V.erase(std::next(this->V.begin(), 7), this->V.end());
  365   this->V.erase(this->V.begin(), this->V.end());