Searched refs:SpelledAsLValue (Results 1 – 4 of 4) sorted by relevance
/external/clang/include/clang/AST/ |
D | Type.h | 1396 unsigned SpelledAsLValue : 1; 2291 bool SpelledAsLValue) : 2298 ReferenceTypeBits.SpelledAsLValue = SpelledAsLValue; 2303 bool isSpelledAsLValue() const { return ReferenceTypeBits.SpelledAsLValue; } 2320 bool SpelledAsLValue) { 2322 ID.AddBoolean(SpelledAsLValue); 2335 bool SpelledAsLValue) : 2336 ReferenceType(LValueReference, Referencee, CanonicalRef, SpelledAsLValue)
|
D | ASTContext.h | 1105 QualType getLValueReferenceType(QualType T, bool SpelledAsLValue = true)
|
/external/clang/lib/Sema/ |
D | SemaType.cpp | 1878 QualType Sema::BuildReferenceType(QualType T, bool SpelledAsLValue, in BuildReferenceType() argument 1890 bool LValueRef = SpelledAsLValue || T->getAs<LValueReferenceType>(); in BuildReferenceType() 1923 return Context.getLValueReferenceType(T, SpelledAsLValue); in BuildReferenceType()
|
/external/clang/lib/AST/ |
D | ASTContext.cpp | 2457 ASTContext::getLValueReferenceType(QualType T, bool SpelledAsLValue) const { in getLValueReferenceType() 2464 ReferenceType::Profile(ID, T, SpelledAsLValue); in getLValueReferenceType() 2476 if (!SpelledAsLValue || InnerRef || !T.isCanonical()) { in getLValueReferenceType() 2488 SpelledAsLValue); in getLValueReferenceType()
|