Home
last modified time | relevance | path

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

/netbsd/external/apache2/llvm/dist/clang/lib/AST/
H A DASTContext.cpp3323 const auto *InnerRef = T->getAs<ReferenceType>(); in getLValueReferenceType() local
3328 if (!SpelledAsLValue || InnerRef || !T.isCanonical()) { in getLValueReferenceType()
3329 QualType PointeeType = (InnerRef ? InnerRef->getPointeeType() : T); in getLValueReferenceType()
3359 const auto *InnerRef = T->getAs<ReferenceType>(); in getRValueReferenceType() local
3364 if (InnerRef || !T.isCanonical()) { in getRValueReferenceType()
3365 QualType PointeeType = (InnerRef ? InnerRef->getPointeeType() : T); in getRValueReferenceType()
/netbsd/external/apache2/llvm/dist/clang/include/clang/AST/
H A DType.h1654 unsigned InnerRef : 1;
2754 ReferenceTypeBits.InnerRef = Referencee->isReferenceType();
2759 bool isInnerRef() const { return ReferenceTypeBits.InnerRef; }