Lines Matching refs:ASTImporter
2 ASTImporter: Merging Clang ASTs
5 The ``ASTImporter`` class is part of Clang's core library, the AST library.
23 ``ASTImporter`` provides the way to copy types or declarations from one ``ASTContext`` to another.
26 Existing clients of the ``ASTImporter`` library are Cross Translation Unit (CTU) static analysis an…
88 Let's create a tool which uses the ASTImporter class!
116 ASTImporter Importer(ToUnit->getASTContext(), ToUnit->getFileManager(),
189 ASTImporter Importer( .... /*MinimalImport=*/false);
198 #include "clang/AST/ASTImporter.h"
234 ASTImporter Importer(ToUnit->getASTContext(), ToUnit->getFileManager(),
318 ASTImporter Importer(ToUnit->getASTContext(), ToUnit->getFileManager(),
452 Note, there may be several different ASTImporter objects which import into the same "to" context bu…
458 ASTImporter Importer(ToUnit->getASTContext(), ToUnit->getFileManager(),
495 Thus, clients of the ASTImporter library should always check if there is any associated error for t…