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

References

lib/Target/Hexagon/RDFGraph.cpp
  322   for (auto I = P.Obj.top(), E = P.Obj.bottom(); I != E; ) {
  680   for (auto I = top(), E = bottom(); I != E; I.down())
 1576   for (auto I = DS.top(), E = DS.bottom(); I != E; I.down()) {
lib/Target/Hexagon/RDFGraph.h
  679         Iterator &up() { Pos = DS.nextUp(Pos); return *this; }
  680         Iterator &down() { Pos = DS.nextDown(Pos); return *this; }
  690         bool operator==(const Iterator &It) const { return Pos == It.Pos; }
  691         bool operator!=(const Iterator &It) const { return Pos != It.Pos; }
  705       using iterator = Iterator;