| clang 22.0.0git
    | 
Imports selected nodes from one AST context into another context, merging AST nodes where appropriate. More...
#include "clang/AST/ASTImporter.h"
| Classes | |
| class | ImportPathTy | 
| Public Types | |
| enum class | ODRHandlingType { Conservative , Liberal } | 
| using | NonEquivalentDeclSet | 
| using | ImportedCXXBaseSpecifierMap | 
| Public Member Functions | |
| ASTImporter (ASTContext &ToContext, FileManager &ToFileManager, ASTContext &FromContext, FileManager &FromFileManager, bool MinimalImport, std::shared_ptr< ASTImporterSharedState > SharedState=nullptr) | |
| virtual | ~ASTImporter () | 
| bool | isMinimalImport () const | 
| Whether the importer will perform a minimal import, creating to-be-completed forward declarations when possible. | |
| void | setODRHandling (ODRHandlingType T) | 
| template<typename ImportT> | |
| llvm::Error | importInto (ImportT &To, const ImportT &From) | 
| Import the given object, returns the result. | |
| llvm::Expected< ExprWithCleanups::CleanupObject > | Import (ExprWithCleanups::CleanupObject From) | 
| Import cleanup objects owned by ExprWithCleanup. | |
| llvm::Expected< const Type * > | Import (const Type *FromT) | 
| Import the given type from the "from" context into the "to" context. | |
| llvm::Expected< QualType > | Import (QualType FromT) | 
| Import the given qualified type from the "from" context into the "to" context. | |
| llvm::Expected< TypeSourceInfo * > | Import (TypeSourceInfo *FromTSI) | 
| Import the given type source information from the "from" context into the "to" context. | |
| llvm::Expected< Attr * > | Import (const Attr *FromAttr) | 
| Import the given attribute from the "from" context into the "to" context. | |
| llvm::Expected< Decl * > | Import (Decl *FromD) | 
| Import the given declaration from the "from" context into the "to" context. | |
| llvm::Expected< const Decl * > | Import (const Decl *FromD) | 
| llvm::Expected< InheritedConstructor > | Import (const InheritedConstructor &From) | 
| Decl * | GetAlreadyImportedOrNull (const Decl *FromD) const | 
| Return the copy of the given declaration in the "to" context if it has already been imported from the "from" context. | |
| TranslationUnitDecl * | GetFromTU (Decl *ToD) | 
| Return the translation unit from where the declaration was imported. | |
| template<typename DeclT> | |
| std::optional< DeclT * > | getImportedFromDecl (const DeclT *ToD) const | 
| Return the declaration in the "from" context from which the declaration in the "to" context was imported. | |
| llvm::Expected< DeclContext * > | ImportContext (DeclContext *FromDC) | 
| Import the given declaration context from the "from" AST context into the "to" AST context. | |
| llvm::Expected< Expr * > | Import (Expr *FromE) | 
| Import the given expression from the "from" context into the "to" context. | |
| llvm::Expected< Stmt * > | Import (Stmt *FromS) | 
| Import the given statement from the "from" context into the "to" context. | |
| llvm::Expected< NestedNameSpecifier > | Import (NestedNameSpecifier FromNNS) | 
| Import the given nested-name-specifier from the "from" context into the "to" context. | |
| llvm::Expected< NestedNameSpecifierLoc > | Import (NestedNameSpecifierLoc FromNNS) | 
| Import the given nested-name-specifier-loc from the "from" context into the "to" context. | |
| llvm::Expected< TemplateName > | Import (TemplateName From) | 
| Import the given template name from the "from" context into the "to" context, or the import error. | |
| llvm::Expected< SourceLocation > | Import (SourceLocation FromLoc) | 
| Import the given source location from the "from" context into the "to" context. | |
| llvm::Expected< SourceRange > | Import (SourceRange FromRange) | 
| Import the given source range from the "from" context into the "to" context. | |
| llvm::Expected< DeclarationName > | Import (DeclarationName FromName) | 
| Import the given declaration name from the "from" context into the "to" context. | |
| IdentifierInfo * | Import (const IdentifierInfo *FromId) | 
| Import the given identifier from the "from" context into the "to" context. | |
| IdentifierOrOverloadedOperator | Import (IdentifierOrOverloadedOperator FromIO) | 
| Import the given identifier or overloaded operator from the "from" context into the "to" context. | |
| llvm::Expected< Selector > | Import (Selector FromSel) | 
| Import the given Objective-C selector from the "from" context into the "to" context. | |
| llvm::Expected< FileID > | Import (FileID, bool IsBuiltin=false) | 
| Import the given file ID from the "from" context into the "to" context. | |
| llvm::Expected< CXXCtorInitializer * > | Import (CXXCtorInitializer *FromInit) | 
| Import the given C++ constructor initializer from the "from" context into the "to" context. | |
| llvm::Expected< CXXBaseSpecifier * > | Import (const CXXBaseSpecifier *FromSpec) | 
| Import the given CXXBaseSpecifier from the "from" context into the "to" context. | |
| llvm::Expected< APValue > | Import (const APValue &FromValue) | 
| Import the given APValue from the "from" context into the "to" context. | |
| llvm::Error | ImportDefinition (Decl *From) | 
| Import the definition of the given declaration, including all of the declarations it contains. | |
| llvm::Error | ImportTemplateArguments (ArrayRef< TemplateArgument > FromArgs, SmallVectorImpl< TemplateArgument > &ToArgs) | 
| Expected< TemplateArgument > | Import (const TemplateArgument &From) | 
| virtual Expected< DeclarationName > | HandleNameConflict (DeclarationName Name, DeclContext *DC, unsigned IDNS, NamedDecl **Decls, unsigned NumDecls) | 
| Cope with a name conflict when importing a declaration into the given context. | |
| ASTContext & | getToContext () const | 
| Retrieve the context that AST nodes are being imported into. | |
| ASTContext & | getFromContext () const | 
| Retrieve the context that AST nodes are being imported from. | |
| FileManager & | getToFileManager () const | 
| Retrieve the file manager that AST nodes are being imported into. | |
| FileManager & | getFromFileManager () const | 
| Retrieve the file manager that AST nodes are being imported from. | |
| DiagnosticBuilder | ToDiag (SourceLocation Loc, unsigned DiagID) | 
| Report a diagnostic in the "to" context. | |
| DiagnosticBuilder | FromDiag (SourceLocation Loc, unsigned DiagID) | 
| Report a diagnostic in the "from" context. | |
| NonEquivalentDeclSet & | getNonEquivalentDecls () | 
| Return the set of declarations that we know are not equivalent. | |
| virtual void | CompleteDecl (Decl *D) | 
| Called for ObjCInterfaceDecl, ObjCProtocolDecl, and TagDecl. | |
| virtual void | Imported (Decl *From, Decl *To) | 
| Subclasses can override this function to observe all of the From->Todeclaration mappings as they are imported. | |
| void | RegisterImportedDecl (Decl *FromD, Decl *ToD) | 
| Decl * | MapImported (Decl *From, Decl *To) | 
| Store and assign the imported declaration to its counterpart. | |
| virtual Decl * | GetOriginalDecl (Decl *To) | 
| Called by StructuralEquivalenceContext. | |
| std::optional< ASTImportError > | getImportDeclErrorIfAny (Decl *FromD) const | 
| Return if import of the given declaration has failed and if yes the kind of the problem. | |
| void | setImportDeclError (Decl *From, ASTImportError Error) | 
| Mark (newly) imported declaration with error. | |
| bool | IsStructurallyEquivalent (QualType From, QualType To, bool Complain=true) | 
| Determine whether the given types are structurally equivalent. | |
| Static Public Member Functions | |
| static UnsignedOrNone | getFieldIndex (Decl *F) | 
| Determine the index of a field in its parent record. | |
| Protected Member Functions | |
| virtual Expected< Decl * > | ImportImpl (Decl *From) | 
| Can be overwritten by subclasses to implement their own import logic. | |
| virtual bool | returnWithErrorInTest () | 
| Used only in unittests to verify the behaviour of the error handling. | |
| Friends | |
| class | ASTNodeImporter | 
Imports selected nodes from one AST context into another context, merging AST nodes where appropriate.
Definition at line 62 of file ASTImporter.h.
Definition at line 67 of file ASTImporter.h.
Definition at line 65 of file ASTImporter.h.
| 
 | strong | 
| Enumerator | |
|---|---|
| Conservative | |
| Liberal | |
Definition at line 70 of file ASTImporter.h.
| ASTImporter::ASTImporter | ( | ASTContext & | ToContext, | 
| FileManager & | ToFileManager, | ||
| ASTContext & | FromContext, | ||
| FileManager & | FromFileManager, | ||
| bool | MinimalImport, | ||
| std::shared_ptr< ASTImporterSharedState > | SharedState = nullptr ) | 
| ToContext | The context we'll be importing into. | 
| ToFileManager | The file manager we'll be importing into. | 
| FromContext | The context we'll be importing from. | 
| FromFileManager | The file manager we'll be importing into. | 
| MinimalImport | If true, the importer will attempt to import as little as it can, e.g., by importing declarations as forward declarations that can be completed at a later point. | 
| SharedState | The importer specific lookup table which may be shared amongst several ASTImporter objects. If not set then the original C/C++ lookup is used. | 
Definition at line 9290 of file ASTImporter.cpp.
References Conservative.
| 
 | virtualdefault | 
| 
 | virtual | 
Called for ObjCInterfaceDecl, ObjCProtocolDecl, and TagDecl.
Mark the Decl as complete, filling it in as much as possible.
| D | A declaration in the "to" context. | 
Definition at line 10708 of file ASTImporter.cpp.
Referenced by ImportContext().
| DiagnosticBuilder ASTImporter::FromDiag | ( | SourceLocation | Loc, | 
| unsigned | DiagID ) | 
Report a diagnostic in the "from" context.
Definition at line 10700 of file ASTImporter.cpp.
Return the copy of the given declaration in the "to" context if it has already been imported from the "from" context.
Otherwise return nullptr.
Definition at line 9712 of file ASTImporter.cpp.
Referenced by Import().
| 
 | static | 
Determine the index of a field in its parent record.
F should be a field (or indirect field) declaration.
Definition at line 9309 of file ASTImporter.cpp.
References clang::Decl::getDeclContext(), and clang::isa().
Referenced by clang::ASTNodeImporter::VisitFieldDecl(), and clang::ASTNodeImporter::VisitIndirectFieldDecl().
| 
 | inline | 
Retrieve the context that AST nodes are being imported from.
Definition at line 536 of file ASTImporter.h.
| 
 | inline | 
Retrieve the file manager that AST nodes are being imported from.
Definition at line 542 of file ASTImporter.h.
| TranslationUnitDecl * ASTImporter::GetFromTU | ( | Decl * | ToD | ) | 
Return the translation unit from where the declaration was imported.
If it does not exist nullptr is returned.
Definition at line 9716 of file ASTImporter.cpp.
References clang::Decl::getTranslationUnitDecl().
| std::optional< ASTImportError > ASTImporter::getImportDeclErrorIfAny | ( | Decl * | FromD | ) | const | 
Return if import of the given declaration has failed and if yes the kind of the problem.
This gives the first error encountered with the node.
Definition at line 10746 of file ASTImporter.cpp.
Referenced by Import().
| 
 | inline | 
Return the declaration in the "from" context from which the declaration in the "to" context was imported.
If it was not imported or of the wrong type a null value is returned.
Definition at line 371 of file ASTImporter.h.
| 
 | inline | 
Return the set of declarations that we know are not equivalent.
Definition at line 551 of file ASTImporter.h.
Called by StructuralEquivalenceContext.
If a RecordDecl is being compared to another RecordDecl as part of import, completing the other RecordDecl may trigger importation of the first RecordDecl. This happens especially for anonymous structs. If the original of the second RecordDecl can be found, we can complete it without the need for importation, eliminating this loop.
Definition at line 576 of file ASTImporter.h.
| 
 | inline | 
Retrieve the context that AST nodes are being imported into.
Definition at line 533 of file ASTImporter.h.
Referenced by Import(), ImportLoopControlStmt(), IsEquivalentFriend(), and IsStructurallyEquivalent().
| 
 | inline | 
Retrieve the file manager that AST nodes are being imported into.
Definition at line 539 of file ASTImporter.h.
| 
 | virtual | 
Cope with a name conflict when importing a declaration into the given context.
This routine is invoked whenever there is a name conflict while importing a declaration. The returned name will become the name of the imported declaration. By default, the returned name is the same as the original name, leaving the conflict unresolve such that name lookup for this name is likely to find an ambiguity later.
Subclasses may override this routine to resolve the conflict, e.g., by renaming the declaration being imported.
| Name | the name of the declaration being imported, which conflicts with other declarations. | 
| DC | the declaration context (in the "to" AST context) in which the name is being imported. | 
| IDNS | the identifier namespace in which the name will be found. | 
| Decls | the set of declarations with the same name as the declaration being imported. | 
| NumDecls | the number of conflicting declarations in Decls. | 
Definition at line 10679 of file ASTImporter.cpp.
References Conservative, and clang::ASTImportError::NameConflict.
| llvm::Expected< APValue > ASTImporter::Import | ( | const APValue & | FromValue | ) | 
Import the given APValue from the "from" context into the "to" context.
Definition at line 10378 of file ASTImporter.cpp.
References ASTNodeImporter, and clang::ASTNodeImporter::ImportAPValue().
Import the given attribute from the "from" context into the "to" context.
Definition at line 9594 of file ASTImporter.cpp.
References clang::cast(), clang::Attr::getKind(), and Import().
| Expected< CXXBaseSpecifier * > ASTImporter::Import | ( | const CXXBaseSpecifier * | FromSpec | ) | 
Import the given CXXBaseSpecifier from the "from" context into the "to" context.
Definition at line 10357 of file ASTImporter.cpp.
References clang::CXXBaseSpecifier::getAccessSpecifierAsWritten(), clang::CXXBaseSpecifier::getEllipsisLoc(), clang::CXXBaseSpecifier::getSourceRange(), clang::CXXBaseSpecifier::getTypeSourceInfo(), Import(), Imported(), clang::CXXBaseSpecifier::isBaseOfClass(), and clang::CXXBaseSpecifier::isVirtual().
| 
 | inline | 
Definition at line 351 of file ASTImporter.h.
References Import().
| IdentifierInfo * ASTImporter::Import | ( | const IdentifierInfo * | FromId | ) | 
Import the given identifier from the "from" context into the "to" context.
Definition at line 10490 of file ASTImporter.cpp.
References clang::IdentifierInfo::getBuiltinID(), clang::IdentifierInfo::getName(), and clang::IdentifierInfo::setBuiltinID().
| llvm::Expected< InheritedConstructor > ASTImporter::Import | ( | const InheritedConstructor & | From | ) | 
Definition at line 9875 of file ASTImporter.cpp.
References ASTNodeImporter.
| Expected< TemplateArgument > clang::ASTImporter::Import | ( | const TemplateArgument & | From | ) | 
| ExpectedTypePtr ASTImporter::Import | ( | const Type * | FromT | ) | 
Import the given type from the "from" context into the "to" context.
Definition at line 9407 of file ASTImporter.cpp.
References ASTNodeImporter, and clang::TypeVisitor< ImplClass, RetTy >::Visit().
| Expected< CXXCtorInitializer * > ASTImporter::Import | ( | CXXCtorInitializer * | FromInit | ) | 
Import the given C++ constructor initializer from the "from" context into the "to" context.
Definition at line 10292 of file ASTImporter.cpp.
References clang::Error, clang::CXXCtorInitializer::getEllipsisLoc(), clang::CXXCtorInitializer::getIndirectMember(), clang::CXXCtorInitializer::getInit(), clang::CXXCtorInitializer::getLParenLoc(), clang::CXXCtorInitializer::getMember(), clang::CXXCtorInitializer::getMemberLocation(), clang::CXXCtorInitializer::getRParenLoc(), clang::CXXCtorInitializer::getTypeSourceInfo(), Import(), importInto(), clang::CXXCtorInitializer::isBaseInitializer(), clang::CXXCtorInitializer::isBaseVirtual(), clang::CXXCtorInitializer::isDelegatingInitializer(), clang::CXXCtorInitializer::isIndirectMemberInitializer(), clang::CXXCtorInitializer::isMemberInitializer(), and clang::CXXCtorInitializer::isPackExpansion().
Import the given declaration from the "from" context into the "to" context.
Definition at line 9723 of file ASTImporter.cpp.
References clang::Decl::addAttr(), clang::Error, GetAlreadyImportedOrNull(), clang::Decl::getAttrs(), clang::Decl::getDeclContext(), getImportDeclErrorIfAny(), clang::Decl::hasAttrs(), Import(), Imported(), ImportImpl(), setImportDeclError(), and clang::updateFlags().
| Expected< DeclarationName > ASTImporter::Import | ( | DeclarationName | FromName | ) | 
Import the given declaration name from the "from" context into the "to" context.
Definition at line 10426 of file ASTImporter.cpp.
References clang::cast(), clang::DeclarationName::CXXConstructorName, clang::DeclarationName::CXXConversionFunctionName, clang::DeclarationName::CXXDeductionGuideName, clang::DeclarationName::CXXDestructorName, clang::DeclarationName::CXXLiteralOperatorName, clang::DeclarationName::CXXOperatorName, clang::DeclarationName::CXXUsingDirective, clang::DeclarationName::getAsIdentifierInfo(), clang::DeclarationName::getCXXDeductionGuideTemplate(), clang::DeclarationName::getCXXLiteralIdentifier(), clang::DeclarationName::getCXXNameType(), clang::DeclarationName::getCXXOverloadedOperator(), clang::DeclarationName::getNameKind(), clang::DeclarationName::getObjCSelector(), clang::DeclarationName::getUsingDirectiveName(), clang::DeclarationName::Identifier, Import(), clang::DeclarationName::ObjCMultiArgSelector, clang::DeclarationName::ObjCOneArgSelector, and clang::DeclarationName::ObjCZeroArgSelector.
Import the given expression from the "from" context into the "to" context.
Definition at line 9946 of file ASTImporter.cpp.
References Import().
| llvm::Expected< ExprWithCleanups::CleanupObject > ASTImporter::Import | ( | ExprWithCleanups::CleanupObject | From | ) | 
Import cleanup objects owned by ExprWithCleanup.
Definition at line 9396 of file ASTImporter.cpp.
References clang::cast(), Import(), and clang::ASTImportError::UnsupportedConstruct.
Referenced by clang::ASTMergeAction::ExecuteAction(), clang::ExternalASTMerger::FindExternalVisibleDeclsByName(), Import(), Import(), Import(), Import(), Import(), Import(), Import(), Import(), Import(), Import(), Import(), Import(), Import(), Import(), Import(), Import(), Import(), ImportContext(), ImportDefinition(), importInto(), importSpecializations(), IsStructurallyEquivalent(), and setTypedefNameForAnonDecl().
Import the given file ID from the "from" context into the "to" context.
Definition at line 10205 of file ASTImporter.cpp.
References clang::Cache, clang::SourceManager::createExpansionLoc(), clang::SourceManager::createFileID(), clang::SourceManager::createMacroArgExpansionLoc(), clang::SrcMgr::FileInfo::getContentCache(), clang::SrcMgr::SLocEntry::getExpansion(), clang::SrcMgr::ExpansionInfo::getExpansionLocEnd(), clang::SrcMgr::ExpansionInfo::getExpansionLocStart(), clang::SrcMgr::SLocEntry::getFile(), clang::SrcMgr::FileInfo::getFileCharacteristic(), clang::SourceManager::getFileID(), clang::SourceManager::getFileIDSize(), clang::SourceManager::getFileManager(), clang::SrcMgr::FileInfo::getIncludeLoc(), clang::SourceManager::getLocForStartOfFile(), clang::SourceManager::getMainFileID(), clang::SourceManager::getSLocEntry(), clang::SrcMgr::ExpansionInfo::getSpellingLoc(), Import(), clang::SrcMgr::SLocEntry::isExpansion(), clang::SrcMgr::ExpansionInfo::isExpansionTokenRange(), clang::FileID::isInvalid(), clang::SrcMgr::ExpansionInfo::isMacroArgExpansion(), clang::FileID::isValid(), and clang::ASTImportError::Unknown.
| IdentifierOrOverloadedOperator ASTImporter::Import | ( | IdentifierOrOverloadedOperator | FromIO | ) | 
Import the given identifier or overloaded operator from the "from" context into the "to" context.
Definition at line 10503 of file ASTImporter.cpp.
References clang::IdentifierOrOverloadedOperator::getIdentifier(), clang::IdentifierOrOverloadedOperator::getOperator(), and Import().
| Expected< NestedNameSpecifier > ASTImporter::Import | ( | NestedNameSpecifier | FromNNS | ) | 
Import the given nested-name-specifier from the "from" context into the "to" context.
Definition at line 9982 of file ASTImporter.cpp.
References clang::cast(), clang::NestedNameSpecifier::getAsMicrosoftSuper(), clang::NestedNameSpecifier::getAsNamespaceAndPrefix(), clang::NestedNameSpecifier::getAsType(), clang::NestedNameSpecifier::getKind(), clang::NestedNameSpecifier::Global, Import(), clang::NestedNameSpecifier::MicrosoftSuper, clang::NestedNameSpecifier::Namespace, clang::NestedNameSpecifier::Null, and clang::NestedNameSpecifier::Type.
| Expected< NestedNameSpecifierLoc > ASTImporter::Import | ( | NestedNameSpecifierLoc | FromNNS | ) | 
Import the given nested-name-specifier-loc from the "from" context into the "to" context.
Definition at line 10014 of file ASTImporter.cpp.
References clang::NestedNameSpecifierLoc::castAsTypeLoc(), clang::Error, clang::NestedNameSpecifier::getAsMicrosoftSuper(), clang::NestedNameSpecifier::getAsNamespaceAndPrefix(), clang::NestedNameSpecifierLoc::getAsNamespaceAndPrefix(), clang::NestedNameSpecifier::getAsType(), clang::TypeLoc::getBeginLoc(), clang::NestedNameSpecifier::getKind(), clang::NestedNameSpecifierLoc::getLocalBeginLoc(), clang::NestedNameSpecifierLoc::getLocalEndLoc(), clang::NestedNameSpecifierLoc::getNestedNameSpecifier(), clang::NestedNameSpecifierLoc::getSourceRange(), getToContext(), clang::ASTContext::getTrivialTypeSourceInfo(), clang::TypeSourceInfo::getTypeLoc(), clang::NestedNameSpecifierLocBuilder::getWithLocInContext(), clang::NestedNameSpecifier::Global, Import(), importInto(), clang::NestedNameSpecifier::MicrosoftSuper, clang::NamespaceAndPrefix::Namespace, clang::NestedNameSpecifier::Namespace, clang::NestedNameSpecifier::Null, clang::NamespaceAndPrefixLoc::Prefix, and clang::NestedNameSpecifier::Type.
Import the given qualified type from the "from" context into the "to" context.
A null type is imported as a null type (no error).
Definition at line 9429 of file ASTImporter.cpp.
References clang::QualType::getLocalQualifiers(), clang::QualType::getTypePtr(), Import(), and clang::QualType::isNull().
Import the given Objective-C selector from the "from" context into the "to" context.
Definition at line 10509 of file ASTImporter.cpp.
References clang::Selector::getIdentifierInfoForSlot(), clang::Selector::getNumArgs(), Import(), and clang::Selector::isNull().
| Expected< SourceLocation > ASTImporter::Import | ( | SourceLocation | FromLoc | ) | 
Import the given source location from the "from" context into the "to" context.
Definition at line 10180 of file ASTImporter.cpp.
References clang::SourceManager::getComposedLoc(), clang::SourceManager::getDecomposedLoc(), Import(), clang::SourceLocation::isInvalid(), and clang::SourceManager::isWrittenInBuiltinFile().
| Expected< SourceRange > ASTImporter::Import | ( | SourceRange | FromRange | ) | 
Import the given source range from the "from" context into the "to" context.
Definition at line 10195 of file ASTImporter.cpp.
References clang::Error, clang::SourceRange::getBegin(), clang::SourceRange::getEnd(), and importInto().
Import the given statement from the "from" context into the "to" context.
Definition at line 9953 of file ASTImporter.cpp.
References ASTNodeImporter, clang::cast(), and clang::TypeVisitor< ImplClass, RetTy >::Visit().
| Expected< TemplateName > ASTImporter::Import | ( | TemplateName | From | ) | 
Import the given template name from the "from" context into the "to" context, or the import error.
Definition at line 10084 of file ASTImporter.cpp.
References clang::UnresolvedSetImpl::addDecl(), clang::TemplateName::AssumedTemplate, ASTNodeImporter, clang::UnresolvedSetImpl::begin(), clang::cast(), clang::TemplateName::DeducedTemplate, clang::TemplateName::DependentTemplate, clang::UnresolvedSetImpl::end(), clang::SubstTemplateTemplateParmPackStorage::getArgumentPack(), clang::TemplateName::getAsAssumedTemplateName(), clang::TemplateName::getAsDependentTemplateName(), clang::TemplateName::getAsOverloadedTemplate(), clang::TemplateName::getAsQualifiedTemplateName(), clang::SubstTemplateTemplateParmPackStorage::getAssociatedDecl(), clang::SubstTemplateTemplateParmStorage::getAssociatedDecl(), clang::TemplateName::getAsSubstTemplateTemplateParm(), clang::TemplateName::getAsSubstTemplateTemplateParmPack(), clang::TemplateName::getAsTemplateDecl(), clang::TemplateName::getAsUsingShadowDecl(), clang::AssumedTemplateStorage::getDeclName(), clang::SubstTemplateTemplateParmPackStorage::getFinal(), clang::SubstTemplateTemplateParmStorage::getFinal(), clang::SubstTemplateTemplateParmPackStorage::getIndex(), clang::SubstTemplateTemplateParmStorage::getIndex(), clang::TemplateName::getKind(), clang::DependentTemplateStorage::getName(), clang::SubstTemplateTemplateParmStorage::getPackIndex(), clang::DependentTemplateStorage::getQualifier(), clang::QualifiedTemplateName::getQualifier(), clang::SubstTemplateTemplateParmStorage::getReplacement(), clang::QualifiedTemplateName::getUnderlyingTemplate(), clang::DependentTemplateStorage::hasTemplateKeyword(), clang::QualifiedTemplateName::hasTemplateKeyword(), Import(), clang::ASTNodeImporter::ImportTemplateArgument(), clang::TemplateName::OverloadedTemplate, clang::TemplateName::QualifiedTemplate, clang::TemplateName::SubstTemplateTemplateParm, clang::TemplateName::SubstTemplateTemplateParmPack, clang::TemplateName::Template, clang::TemplateName, and clang::TemplateName::UsingTemplate.
| Expected< TypeSourceInfo * > ASTImporter::Import | ( | TypeSourceInfo * | FromTSI | ) | 
Import the given type source information from the "from" context into the "to" context.
Definition at line 9440 of file ASTImporter.cpp.
References clang::TypeLoc::getBeginLoc(), clang::TypeSourceInfo::getType(), clang::TypeSourceInfo::getTypeLoc(), and Import().
| Expected< DeclContext * > ASTImporter::ImportContext | ( | DeclContext * | FromDC | ) | 
Import the given declaration context from the "from" AST context into the "to" AST context.
Definition at line 9879 of file ASTImporter.cpp.
References ASTNodeImporter, clang::cast(), CompleteDecl(), clang::Error, clang::ObjCInterfaceDecl::getDefinition(), clang::ObjCProtocolDecl::getDefinition(), clang::ASTNodeImporter::IDK_Basic, and Import().
Import the definition of the given declaration, including all of the declarations it contains.
Definition at line 10383 of file ASTImporter.cpp.
References ASTNodeImporter, clang::cast(), clang::Error, clang::ASTNodeImporter::IDK_Everything, Import(), clang::ASTNodeImporter::ImportDeclContext(), and clang::ASTNodeImporter::ImportDefinition().
Subclasses can override this function to observe all of the From -> To declaration mappings as they are imported. 
Definition at line 561 of file ASTImporter.h.
Can be overwritten by subclasses to implement their own import logic.
The overwritten method should call this method if it didn't import the decl on its own.
Definition at line 9385 of file ASTImporter.cpp.
References ASTNodeImporter, and clang::TypeVisitor< ImplClass, RetTy >::Visit().
Referenced by Import().
| 
 | inlinenodiscard | 
| llvm::Error clang::ASTImporter::ImportTemplateArguments | ( | ArrayRef< TemplateArgument > | FromArgs, | 
| SmallVectorImpl< TemplateArgument > & | ToArgs ) | 
| 
 | inline | 
Whether the importer will perform a minimal import, creating to-be-completed forward declarations when possible.
Definition at line 298 of file ASTImporter.h.
Referenced by getStructuralEquivalenceKind().
Determine whether the given types are structurally equivalent.
Definition at line 10762 of file ASTImporter.cpp.
References getStructuralEquivalenceKind(), getToContext(), clang::QualType::getTypePtr(), Import(), and clang::StructuralEquivalenceContext::IsEquivalent().
Referenced by IsEquivalentFriend().
Store and assign the imported declaration to its counterpart.
It may happen that several decls from the 'from' context are mapped to the same decl in the 'to' context.
Definition at line 10728 of file ASTImporter.cpp.
References clang::Decl::getDeclContext().
Referenced by RegisterImportedDecl().
Definition at line 9391 of file ASTImporter.cpp.
References MapImported().
| 
 | inlineprotectedvirtual | 
Used only in unittests to verify the behaviour of the error handling.
Definition at line 270 of file ASTImporter.h.
| void ASTImporter::setImportDeclError | ( | Decl * | From, | 
| ASTImportError | Error ) | 
Mark (newly) imported declaration with error.
Definition at line 10754 of file ASTImporter.cpp.
References clang::Error.
Referenced by Import().
| 
 | inline | 
Definition at line 300 of file ASTImporter.h.
References clang::T.
| DiagnosticBuilder ASTImporter::ToDiag | ( | SourceLocation | Loc, | 
| unsigned | DiagID ) | 
Report a diagnostic in the "to" context.
Definition at line 10692 of file ASTImporter.cpp.
| 
 | friend | 
Definition at line 63 of file ASTImporter.h.
References ASTNodeImporter.
Referenced by ASTNodeImporter, Import(), Import(), Import(), Import(), Import(), ImportContext(), ImportDefinition(), and ImportImpl().