Searched refs:IsDecltypeAuto (Results 1 – 5 of 5) sorted by relevance
| /freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/ |
| D | Type.h | 1337 unsigned IsDecltypeAuto : 1; 3633 AutoType(QualType DeducedType, bool IsDecltypeAuto, 3642 AutoTypeBits.IsDecltypeAuto = IsDecltypeAuto; 3648 bool isDecltypeAuto() const { return AutoTypeBits.IsDecltypeAuto; } 3668 bool IsDecltypeAuto, bool IsDependent) { 3670 ID.AddBoolean(IsDecltypeAuto);
|
| D | ASTContext.h | 1145 QualType getAutoType(QualType DeducedType, bool IsDecltypeAuto,
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/ |
| D | ASTContext.cpp | 3667 QualType ASTContext::getAutoType(QualType DeducedType, bool IsDecltypeAuto, in getAutoType() argument 3669 if (DeducedType.isNull() && !IsDecltypeAuto && !IsDependent) in getAutoType() 3675 AutoType::Profile(ID, DeducedType, IsDecltypeAuto, IsDependent); in getAutoType() 3680 IsDecltypeAuto, in getAutoType()
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/Serialization/ |
| D | ASTReader.cpp | 4739 bool IsDecltypeAuto = Record[Idx++]; in readTypeRecord() local 4741 return Context.getAutoType(Deduced, IsDecltypeAuto, IsDependent); in readTypeRecord()
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/ |
| D | TreeTransform.h | 796 QualType RebuildAutoType(QualType Deduced, bool IsDecltypeAuto) { in RebuildAutoType() argument 800 return SemaRef.Context.getAutoType(Deduced, IsDecltypeAuto, in RebuildAutoType()
|