Home
last modified time | relevance | path

Searched refs:IsDecltypeAuto (Results 1 – 5 of 5) sorted by relevance

/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDType.h1428 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);
HDASTContext.h1230 QualType getAutoType(QualType DeducedType, bool IsDecltypeAuto,
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDASTContext.cpp3924 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/
HDASTReader.cpp5184 bool IsDecltypeAuto = Record[Idx++]; in readTypeRecord() local
5186 return Context.getAutoType(Deduced, IsDecltypeAuto, IsDependent); in readTypeRecord()
/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDTreeTransform.h846 QualType RebuildAutoType(QualType Deduced, bool IsDecltypeAuto) { in RebuildAutoType() argument
850 return SemaRef.Context.getAutoType(Deduced, IsDecltypeAuto, in RebuildAutoType()