Searched refs:SpelledAsLValue (Results 1 – 8 of 8) sorted by relevance
/external/clang/include/clang/AST/ |
D | Type.h | 1428 unsigned SpelledAsLValue : 1; 2324 bool SpelledAsLValue) : 2331 ReferenceTypeBits.SpelledAsLValue = SpelledAsLValue; 2336 bool isSpelledAsLValue() const { return ReferenceTypeBits.SpelledAsLValue; } 2353 bool SpelledAsLValue) { 2355 ID.AddBoolean(SpelledAsLValue); 2368 bool SpelledAsLValue) : 2369 ReferenceType(LValueReference, Referencee, CanonicalRef, SpelledAsLValue)
|
D | ASTContext.h | 1118 QualType getLValueReferenceType(QualType T, bool SpelledAsLValue = true)
|
/external/llvm-project/clang/include/clang/AST/ |
D | Type.h | 1643 unsigned SpelledAsLValue : 1; 2739 bool SpelledAsLValue) 2742 ReferenceTypeBits.SpelledAsLValue = SpelledAsLValue; 2747 bool isSpelledAsLValue() const { return ReferenceTypeBits.SpelledAsLValue; } 2766 bool SpelledAsLValue) { 2768 ID.AddBoolean(SpelledAsLValue); 2782 bool SpelledAsLValue) 2784 SpelledAsLValue) {}
|
D | ASTContext.h | 1275 QualType getLValueReferenceType(QualType T, bool SpelledAsLValue = true)
|
/external/clang/lib/Sema/ |
D | SemaType.cpp | 1984 QualType Sema::BuildReferenceType(QualType T, bool SpelledAsLValue, in BuildReferenceType() argument 1996 bool LValueRef = SpelledAsLValue || T->getAs<LValueReferenceType>(); in BuildReferenceType() 2029 return Context.getLValueReferenceType(T, SpelledAsLValue); in BuildReferenceType()
|
/external/clang/lib/AST/ |
D | ASTContext.cpp | 2466 ASTContext::getLValueReferenceType(QualType T, bool SpelledAsLValue) const { in getLValueReferenceType() 2473 ReferenceType::Profile(ID, T, SpelledAsLValue); in getLValueReferenceType() 2485 if (!SpelledAsLValue || InnerRef || !T.isCanonical()) { in getLValueReferenceType() 2497 SpelledAsLValue); in getLValueReferenceType()
|
/external/llvm-project/clang/lib/AST/ |
D | ASTContext.cpp | 3266 ASTContext::getLValueReferenceType(QualType T, bool SpelledAsLValue) const { in getLValueReferenceType() 3273 ReferenceType::Profile(ID, T, SpelledAsLValue); in getLValueReferenceType() 3285 if (!SpelledAsLValue || InnerRef || !T.isCanonical()) { in getLValueReferenceType() 3296 SpelledAsLValue); in getLValueReferenceType()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaType.cpp | 2126 QualType Sema::BuildReferenceType(QualType T, bool SpelledAsLValue, in BuildReferenceType() argument 2138 bool LValueRef = SpelledAsLValue || T->getAs<LValueReferenceType>(); in BuildReferenceType() 2174 return Context.getLValueReferenceType(T, SpelledAsLValue); in BuildReferenceType()
|