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

/external/clang/include/clang/AST/
H A DType.h1428 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)
2323 ReferenceType(TypeClass tc, QualType Referencee, QualType CanonicalRef, bool SpelledAsLValue) argument
2351 Profile(llvm::FoldingSetNodeID &ID, QualType Referencee, bool SpelledAsLValue) argument
2367 LValueReferenceType(QualType Referencee, QualType CanonicalRef, bool SpelledAsLValue) argument
H A DASTContext.h1118 QualType getLValueReferenceType(QualType T, bool SpelledAsLValue = true)
/external/clang/lib/Sema/
H A DSemaType.cpp1984 QualType Sema::BuildReferenceType(QualType T, bool SpelledAsLValue, argument
1996 bool LValueRef = SpelledAsLValue || T->getAs<LValueReferenceType>();
2029 return Context.getLValueReferenceType(T, SpelledAsLValue);
/external/clang/lib/AST/
H A DASTContext.cpp2466 ASTContext::getLValueReferenceType(QualType T, bool SpelledAsLValue) const {
2473 ReferenceType::Profile(ID, T, SpelledAsLValue);
2485 if (!SpelledAsLValue || InnerRef || !T.isCanonical()) {
2497 SpelledAsLValue);

Completed in 176 milliseconds