reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/include/clang/AST/ASTContext.h
 1531   QualType getAutoType(QualType DeducedType, AutoTypeKeyword Keyword,
tools/clang/include/clang/AST/Type.h
 4826   AutoType(QualType DeducedAsType, AutoTypeKeyword Keyword,
 4835     return getKeyword() == AutoTypeKeyword::DecltypeAuto;
 4838   AutoTypeKeyword getKeyword() const {
 4848                       AutoTypeKeyword Keyword, bool IsDependent, bool IsPack) {
tools/clang/lib/AST/ASTContext.cpp
 4985 QualType ASTContext::getAutoType(QualType DeducedType, AutoTypeKeyword Keyword,
 4988   if (DeducedType.isNull() && Keyword == AutoTypeKeyword::Auto && !IsDependent)
 5060       new (*this, TypeAlignment) AutoType(QualType(), AutoTypeKeyword::Auto,
tools/clang/lib/AST/JSONNodeDumper.cpp
  634   case AutoTypeKeyword::Auto:
  637   case AutoTypeKeyword::DecltypeAuto:
  640   case AutoTypeKeyword::GNUAutoType:
tools/clang/lib/AST/TypePrinter.cpp
 1050     case AutoTypeKeyword::Auto: OS << "auto"; break;
 1051     case AutoTypeKeyword::DecltypeAuto: OS << "decltype(auto)"; break;
 1052     case AutoTypeKeyword::GNUAutoType: OS << "__auto_type"; break;
tools/clang/lib/Sema/SemaType.cpp
 1598     Result = Context.getAutoType(QualType(), AutoTypeKeyword::Auto, false);
 1602     Result = Context.getAutoType(QualType(), AutoTypeKeyword::GNUAutoType, false);
 1606     Result = Context.getAutoType(QualType(), AutoTypeKeyword::DecltypeAuto,
 2962         (Auto && Auto->getKeyword() != AutoTypeKeyword::GNUAutoType);
 2978           !Auto || Auto->getKeyword() != AutoTypeKeyword::Auto)
 3121         case AutoTypeKeyword::Auto: Kind = 0; break;
 3122         case AutoTypeKeyword::DecltypeAuto: Kind = 1; break;
 3123         case AutoTypeKeyword::GNUAutoType: Kind = 2; break;
 4586                           AutoTypeKeyword::Auto)) {
tools/clang/lib/Sema/TreeTransform.h
  941   QualType RebuildAutoType(QualType Deduced, AutoTypeKeyword Keyword) {
tools/clang/lib/Serialization/ASTReader.cpp
 6589     AutoTypeKeyword Keyword = (AutoTypeKeyword)Record[Idx++];
tools/lldb/unittests/Symbol/TestClangASTContext.cpp
  429                         clang::AutoTypeKeyword::Auto, false)