HomeSort by: relevance | last modified time | path
    Searched refs:Importer (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
ASTImporter.cpp 143 ASTImporter &Importer;
145 // Use this instead of Importer.importInto .
148 return Importer.importInto(To, From);
154 auto ToOrErr = Importer.Import(From);
164 auto ToOrErr = Importer.Import(From);
178 return Importer.Import(From);
251 if (Importer.getImportDeclErrorIfAny(FromD)) {
255 ToD = cast_or_null<ToDeclT>(Importer.GetAlreadyImportedOrNull(FromD));
260 Importer.RegisterImportedDecl(FromD, ToD);
279 return Importer.MapImported(D, const_cast<FunctionDecl *>(Definition))
    [all...]
ExternalASTMerger.cpp 95 /// - It maintains a reverse importer for use with names. This allows lookup of
172 // Check that we never end up in the current Importer again.
174 "Delegated to same Importer?");
261 llvm_unreachable("We should have an importer for this origin!");
284 LazyASTImporter &Importer = LazyImporterForOrigin(*this, *Origin.AST);
285 Callback(Importer, Importer.GetReverse(), Origin.DC);
288 for (const std::unique_ptr<ASTImporter> &Importer : Importers) {
290 Importer->getFromContext().getTranslationUnitDecl();
292 static_cast<LazyASTImporter *>(Importer.get())->GetReverse()
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
ASTMerge.cpp 56 ASTImporter Importer(CI.getASTContext(), CI.getFileManager(),
68 llvm::Expected<Decl *> ToDOrError = Importer.Import(D);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-link/
llvm-link.cpp 344 FunctionImporter Importer(*Index, CachedModuleLoader,
346 ExitOnErr(Importer.importFunctions(DestModule, ImportList));
  /src/external/apache2/llvm/dist/clang/lib/CrossTU/
CrossTranslationUnit.cpp 698 ASTImporter &Importer = getOrCreateASTImporter(Unit);
700 auto ToDeclOrError = Importer.Import(D);
  /src/external/apache2/llvm/dist/llvm/lib/LTO/
LTOBackend.cpp 648 FunctionImporter Importer(CombinedIndex, ModuleLoader,
650 if (Error Err = Importer.importFunctions(Mod, ImportList).takeError())
ThinLTOCodeGenerator.cpp 221 FunctionImporter Importer(Index, Loader, ClearDSOLocalOnDeclarations);
222 Expected<bool> Result = Importer.importFunctions(TheModule, ImportList);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
FunctionImport.cpp 883 // if this code changes, the importer needs to change so that edges
1374 FunctionImporter Importer(*Index, ModuleLoader,
1376 Expected<bool> Result = Importer.importFunctions(M, ImportList);

Completed in 67 milliseconds