Searched defs:IsDecltypeAuto (Results 1 - 4 of 4) sorted by relevance

/external/clang/lib/Serialization/
H A DASTReader.cpp5291 bool IsDecltypeAuto = Record[Idx++]; local
5293 return Context.getAutoType(Deduced, IsDecltypeAuto, IsDependent);
/external/clang/include/clang/AST/
H A DType.h1336 unsigned IsDecltypeAuto : 1;
3658 AutoType(QualType DeducedType, bool IsDecltypeAuto, argument
3667 AutoTypeBits.IsDecltypeAuto = IsDecltypeAuto;
3673 bool isDecltypeAuto() const { return AutoTypeBits.IsDecltypeAuto; }
3693 bool IsDecltypeAuto, bool IsDependent) {
3695 ID.AddBoolean(IsDecltypeAuto);
3692 Profile(llvm::FoldingSetNodeID &ID, QualType Deduced, bool IsDecltypeAuto, bool IsDependent) argument
/external/clang/lib/AST/
H A DASTContext.cpp3748 QualType ASTContext::getAutoType(QualType DeducedType, bool IsDecltypeAuto, argument
3750 if (DeducedType.isNull() && !IsDecltypeAuto && !IsDependent)
3756 AutoType::Profile(ID, DeducedType, IsDecltypeAuto, IsDependent);
3761 IsDecltypeAuto,
/external/clang/lib/Sema/
H A DTreeTransform.h803 QualType RebuildAutoType(QualType Deduced, bool IsDecltypeAuto) { argument
807 return SemaRef.Context.getAutoType(Deduced, IsDecltypeAuto,

Completed in 88 milliseconds