Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DType.h1358 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);
DASTContext.h1196 QualType getAutoType(QualType DeducedType, bool IsDecltypeAuto,
/external/clang/lib/AST/
DASTContext.cpp3826 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/
DASTReader.cpp5472 bool IsDecltypeAuto = Record[Idx++]; in readTypeRecord() local
5474 return Context.getAutoType(Deduced, IsDecltypeAuto, IsDependent); in readTypeRecord()
/external/clang/lib/Sema/
DTreeTransform.h830 QualType RebuildAutoType(QualType Deduced, bool IsDecltypeAuto) { in RebuildAutoType() argument
834 return SemaRef.Context.getAutoType(Deduced, IsDecltypeAuto, in RebuildAutoType()