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.cpp3821 const auto *InnerRef = T->getAs<ReferenceType>(); in getLValueReferenceType() local
3826 if (!SpelledAsLValue || InnerRef || !T.isCanonical()) { in getLValueReferenceType()
3827 QualType PointeeType = (InnerRef ? InnerRef->getPointeeType() : T); in getLValueReferenceType()
3861 const auto *InnerRef = T->getAs<ReferenceType>(); in getRValueReferenceType() local
3866 if (InnerRef || !T.isCanonical()) { in getRValueReferenceType()
3867 QualType PointeeType = (InnerRef ? InnerRef->getPointeeType() : T); in getRValueReferenceType()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DType.h2032 unsigned InnerRef : 1;
3411 ReferenceTypeBits.InnerRef = Referencee->isReferenceType();
3416 bool isInnerRef() const { return ReferenceTypeBits.InnerRef; }