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

Declarations

include/llvm/ADT/MapVector.h
  204   template <class Predicate> void remove_if(Predicate Pred);

References

lib/CodeGen/ScheduleDAGInstrs.cpp
  714   map.remove_if([&](std::pair<ValueType, SUList> &mapEntry) {
tools/lld/ELF/SyntheticSections.cpp
  827     got.global.remove_if([&](const std::pair<Symbol *, size_t> &p) {
  836     got.relocs.remove_if([&](const std::pair<Symbol *, size_t> &p) {
  898   primGot->relocs.remove_if([&](const std::pair<Symbol *, size_t> &p) {
unittests/ADT/MapVectorTest.cpp
  116   MV.remove_if([](const std::pair<int, int> &Val) { return Val.second % 2; });
  273   MV.remove_if([](const std::pair<int, int> &Val) { return Val.second % 2; });
  391   MV.remove_if([](const std::pair<int, int> &Val) { return Val.second % 2; });