Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp4101 const auto *InnerRef = T->getAs<ReferenceType>(); in getLValueReferenceType() local
4106 if (!SpelledAsLValue || InnerRef || !T.isCanonical()) { in getLValueReferenceType()
4107 QualType PointeeType = (InnerRef ? InnerRef->getPointeeType() : T); in getLValueReferenceType()
4141 const auto *InnerRef = T->getAs<ReferenceType>(); in getRValueReferenceType() local
4146 if (InnerRef || !T.isCanonical()) { in getRValueReferenceType()
4147 QualType PointeeType = (InnerRef ? InnerRef->getPointeeType() : T); in getRValueReferenceType()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DType.h2044 unsigned InnerRef : 1;
3508 ReferenceTypeBits.InnerRef = Referencee->isReferenceType();
3513 bool isInnerRef() const { return ReferenceTypeBits.InnerRef; }