Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/Analysis/
H A DCFG.h651 template <bool IsConst> class ElementRefImpl {
653 template <bool IsOtherConst> friend class ElementRefImpl; variable
666 ElementRefImpl(CFGBlockPtr Parent, size_t Index) in ElementRefImpl() function
670 ElementRefImpl(ElementRefImpl<IsOtherConst> Other) in ElementRefImpl() function
671 : ElementRefImpl(Other.Parent, Other.Index) {} in ElementRefImpl()
678 bool operator<(ElementRefImpl Other) const {
683 bool operator==(ElementRefImpl Other) const {
687 bool operator!=(ElementRefImpl Other) const { return !(*this == Other); }
722 using ElementRef = typename CFGBlock::ElementRefImpl<IsConst>;
920 using CFGElementRef = ElementRefImpl<false>;
[all …]