Searched refs:IsDecltypeAuto (Results 1 – 5 of 5) sorted by relevance
| /NextBSD/contrib/llvm/tools/clang/include/clang/AST/ |
| HD | Type.h | 1428 unsigned IsDecltypeAuto : 1; 3875 AutoType(QualType DeducedType, bool IsDecltypeAuto, 3884 AutoTypeBits.IsDecltypeAuto = IsDecltypeAuto; 3890 bool isDecltypeAuto() const { return AutoTypeBits.IsDecltypeAuto; } 3910 bool IsDecltypeAuto, bool IsDependent) { 3912 ID.AddBoolean(IsDecltypeAuto);
|
| HD | ASTContext.h | 1230 QualType getAutoType(QualType DeducedType, bool IsDecltypeAuto,
|
| /NextBSD/contrib/llvm/tools/clang/lib/AST/ |
| HD | ASTContext.cpp | 3924 QualType ASTContext::getAutoType(QualType DeducedType, bool IsDecltypeAuto, in getAutoType() argument 3926 if (DeducedType.isNull() && !IsDecltypeAuto && !IsDependent) in getAutoType() 3932 AutoType::Profile(ID, DeducedType, IsDecltypeAuto, IsDependent); in getAutoType() 3937 IsDecltypeAuto, in getAutoType()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Serialization/ |
| HD | ASTReader.cpp | 5184 bool IsDecltypeAuto = Record[Idx++]; in readTypeRecord() local 5186 return Context.getAutoType(Deduced, IsDecltypeAuto, IsDependent); in readTypeRecord()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Sema/ |
| HD | TreeTransform.h | 846 QualType RebuildAutoType(QualType Deduced, bool IsDecltypeAuto) { in RebuildAutoType() argument 850 return SemaRef.Context.getAutoType(Deduced, IsDecltypeAuto, in RebuildAutoType()
|