Searched refs:IsDecltypeAuto (Results 1 – 5 of 5) sorted by relevance
/external/clang/include/clang/AST/ |
D | Type.h | 1358 unsigned IsDecltypeAuto : 1; 3714 AutoType(QualType DeducedType, bool IsDecltypeAuto, 3723 AutoTypeBits.IsDecltypeAuto = IsDecltypeAuto; 3729 bool isDecltypeAuto() const { return AutoTypeBits.IsDecltypeAuto; } 3749 bool IsDecltypeAuto, bool IsDependent) { 3751 ID.AddBoolean(IsDecltypeAuto);
|
D | ASTContext.h | 1196 QualType getAutoType(QualType DeducedType, bool IsDecltypeAuto,
|
/external/clang/lib/AST/ |
D | ASTContext.cpp | 3826 QualType ASTContext::getAutoType(QualType DeducedType, bool IsDecltypeAuto, in getAutoType() argument 3828 if (DeducedType.isNull() && !IsDecltypeAuto && !IsDependent) in getAutoType() 3834 AutoType::Profile(ID, DeducedType, IsDecltypeAuto, IsDependent); in getAutoType() 3839 IsDecltypeAuto, in getAutoType()
|
/external/clang/lib/Serialization/ |
D | ASTReader.cpp | 5472 bool IsDecltypeAuto = Record[Idx++]; in readTypeRecord() local 5474 return Context.getAutoType(Deduced, IsDecltypeAuto, IsDependent); in readTypeRecord()
|
/external/clang/lib/Sema/ |
D | TreeTransform.h | 830 QualType RebuildAutoType(QualType Deduced, bool IsDecltypeAuto) { in RebuildAutoType() argument 834 return SemaRef.Context.getAutoType(Deduced, IsDecltypeAuto, in RebuildAutoType()
|