Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp3409 const auto *InnerRef = T->getAs<ReferenceType>(); in getLValueReferenceType() local
3414 if (!SpelledAsLValue || InnerRef || !T.isCanonical()) { in getLValueReferenceType()
3415 QualType PointeeType = (InnerRef ? InnerRef->getPointeeType() : T); in getLValueReferenceType()
3449 const auto *InnerRef = T->getAs<ReferenceType>(); in getRValueReferenceType() local
3454 if (InnerRef || !T.isCanonical()) { in getRValueReferenceType()
3455 QualType PointeeType = (InnerRef ? InnerRef->getPointeeType() : T); in getRValueReferenceType()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DType.h1806 unsigned InnerRef : 1;
3014 ReferenceTypeBits.InnerRef = Referencee->isReferenceType();
3019 bool isInnerRef() const { return ReferenceTypeBits.InnerRef; }