Home
last modified time | relevance | path

Searched refs:bf_iterator (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/llvm/include/llvm/ADT/
H A DBreadthFirstIterator.h70 inline bf_iterator(NodeRef Node) { in bf_iterator() function
79 inline bf_iterator() = default;
115 static bf_iterator begin(const GraphT &G) { in begin()
116 return bf_iterator(GT::getEntryNode(G)); in begin()
119 static bf_iterator end(const GraphT &G) { return bf_iterator(); } in end()
121 bool operator==(const bf_iterator &RHS) const {
134 bf_iterator &operator++() { // Pre-increment
139 bf_iterator operator++(int) { // Post-increment
140 bf_iterator ItCopy = *this;
150 return bf_iterator<T>::begin(G); in bf_begin()
[all …]
/llvm-project-15.0.7/llvm/unittests/ADT/
H A DBreadthFirstIteratorTest.cpp18 typedef bf_iterator<Graph<4>> BFIter; in TEST()
43 typedef bf_iterator<Graph<4>> BFIter; in TEST()