Searched refs:NodeItr (Results 1 - 1 of 1) sorted by relevance

/external/llvm/include/llvm/CodeGen/PBQP/
H A DGraph.h236 class NodeItr { class in class:PBQP::Graph
238 NodeItr(NodeId CurNId, const Graph &G) function in class:PBQP::Graph::NodeItr
243 bool operator==(const NodeItr &O) const { return CurNId == O.CurNId; }
244 bool operator!=(const NodeItr &O) const { return !(*this == O); }
245 NodeItr& operator++() { CurNId = findNextInUse(++CurNId); return *this; }
291 NodeItr begin() const { return NodeItr(0, G); }
292 NodeItr end() const { return NodeItr(G.Nodes.size(), G); }

Completed in 204 milliseconds