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

/external/clang/include/clang/AST/
H A DType.h1337 unsigned IsDecltypeAuto : 1;
3617 AutoType(QualType DeducedType, bool IsDecltypeAuto, bool IsDependent) argument
3623 AutoTypeBits.IsDecltypeAuto = IsDecltypeAuto;
3629 bool isDecltypeAuto() const { return AutoTypeBits.IsDecltypeAuto; }
3648 bool IsDecltypeAuto, bool IsDependent) {
3650 ID.AddBoolean(IsDecltypeAuto);
3647 Profile(llvm::FoldingSetNodeID &ID, QualType Deduced, bool IsDecltypeAuto, bool IsDependent) argument
/external/clang/lib/AST/
H A DASTContext.cpp3656 QualType ASTContext::getAutoType(QualType DeducedType, bool IsDecltypeAuto, argument
3658 if (DeducedType.isNull() && !IsDecltypeAuto && !IsDependent)
3664 AutoType::Profile(ID, DeducedType, IsDecltypeAuto, IsDependent);
3669 IsDecltypeAuto,
/external/clang/lib/Sema/
H A DTreeTransform.h781 QualType RebuildAutoType(QualType Deduced, bool IsDecltypeAuto) { argument
785 return SemaRef.Context.getAutoType(Deduced, IsDecltypeAuto);
/external/clang/lib/Serialization/
H A DASTReader.cpp4736 bool IsDecltypeAuto = Record[Idx++]; local
4738 return Context.getAutoType(Deduced, IsDecltypeAuto, IsDependent);

Completed in 207 milliseconds