Searched refs:ElementRefIterator (Results 1 – 2 of 2) sorted by relevance
700 template <bool IsReverse, bool IsConst> class ElementRefIterator {703 friend class ElementRefIterator; variable729 ElementRefIterator(CFGBlockRef Parent, UnderlayingIteratorTy Pos) in ElementRefIterator() function733 ElementRefIterator(ElementRefIterator<false, IsOtherConst> E) in ElementRefIterator() function734 : ElementRefIterator(E.Parent, E.Pos.base()) {} in ElementRefIterator()737 ElementRefIterator(ElementRefIterator<true, IsOtherConst> E) in ElementRefIterator() function738 : ElementRefIterator(E.Parent, std::make_reverse_iterator(E.Pos)) {} in ElementRefIterator()740 bool operator<(ElementRefIterator Other) const {745 bool operator==(ElementRefIterator Other) const {749 bool operator!=(ElementRefIterator Other) const {[all …]
113 TEST(CFG, ElementRefIterator) { in TEST() argument