Home
last modified time | relevance | path

Searched refs:SpelledAsLValue (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DType.h2027 unsigned SpelledAsLValue : 1;
3407 bool SpelledAsLValue)
3410 ReferenceTypeBits.SpelledAsLValue = SpelledAsLValue;
3415 bool isSpelledAsLValue() const { return ReferenceTypeBits.SpelledAsLValue; }
3434 bool SpelledAsLValue) {
3436 ID.AddBoolean(SpelledAsLValue);
3450 bool SpelledAsLValue)
3452 SpelledAsLValue) {}
H A DASTContext.h1484 QualType getLValueReferenceType(QualType T, bool SpelledAsLValue = true)
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp1836 QualType Sema::BuildReferenceType(QualType T, bool SpelledAsLValue, in BuildReferenceType() argument
1848 bool LValueRef = SpelledAsLValue || T->getAs<LValueReferenceType>(); in BuildReferenceType()
1907 return Context.getLValueReferenceType(T, SpelledAsLValue); in BuildReferenceType()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp3806 ASTContext::getLValueReferenceType(QualType T, bool SpelledAsLValue) const { in getLValueReferenceType()
3814 ReferenceType::Profile(ID, T, SpelledAsLValue); in getLValueReferenceType()
3826 if (!SpelledAsLValue || InnerRef || !T.isCanonical()) { in getLValueReferenceType()
3837 LValueReferenceType(T, Canonical, SpelledAsLValue); in getLValueReferenceType()