Home
last modified time | relevance | path

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

/llvm-project/clang/include/clang/Analysis/
H A DCFG.h700 template <bool IsReverse, bool IsConst> class ElementRefIterator {
703 friend class ElementRefIterator; variable
729 ElementRefIterator(CFGBlockRef Parent, UnderlayingIteratorTy Pos) in ElementRefIterator() function
733 ElementRefIterator(ElementRefIterator<false, IsOtherConst> E) in ElementRefIterator() function
734 : ElementRefIterator(E.Parent, E.Pos.base()) {} in ElementRefIterator()
737 ElementRefIterator(ElementRefIterator<true, IsOtherConst> E) in ElementRefIterator() function
738 : 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 …]
/llvm-project/clang/unittests/Analysis/
H A DCFGTest.cpp113 TEST(CFG, ElementRefIterator) { in TEST() argument