Home
last modified time | relevance | path

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

/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/
DType.h1337 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);
DASTContext.h1145 QualType getAutoType(QualType DeducedType, bool IsDecltypeAuto,
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/
DASTContext.cpp3667 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/
DASTReader.cpp4739 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/
DTreeTransform.h796 QualType RebuildAutoType(QualType Deduced, bool IsDecltypeAuto) { in RebuildAutoType() argument
800 return SemaRef.Context.getAutoType(Deduced, IsDecltypeAuto, in RebuildAutoType()