Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp3338 const auto *InnerRef = T->getAs<ReferenceType>(); in getLValueReferenceType() local
3343 if (!SpelledAsLValue || InnerRef || !T.isCanonical()) { in getLValueReferenceType()
3344 QualType PointeeType = (InnerRef ? InnerRef->getPointeeType() : T); in getLValueReferenceType()
3374 const auto *InnerRef = T->getAs<ReferenceType>(); in getRValueReferenceType() local
3379 if (InnerRef || !T.isCanonical()) { in getRValueReferenceType()
3380 QualType PointeeType = (InnerRef ? InnerRef->getPointeeType() : T); in getRValueReferenceType()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DType.h1654 unsigned InnerRef : 1;
2754 ReferenceTypeBits.InnerRef = Referencee->isReferenceType();
2759 bool isInnerRef() const { return ReferenceTypeBits.InnerRef; }