Lines Matching refs:FileName
153 const std::string &FileName)>
159 const char *argv0, const std::string &FileName)> in ModuleLazyLoaderCache()
164 Module &operator()(const char *argv0, const std::string &FileName);
166 std::unique_ptr<Module> takeModule(const std::string &FileName) { in takeModule() argument
167 auto I = ModuleMap.find(FileName); in takeModule()
235 std::string FileName = Import.substr(Idx + 1, std::string::npos); in importFunctions() local
238 auto &SrcModule = ModuleLoaderCache(argv0, FileName); in importFunctions()
241 errs() << argv0 << ": " << FileName; in importFunctions()
249 << FunctionName << " from " << FileName << "\n"; in importFunctions()
257 << " from " << FileName << "\n"; in importFunctions()
262 errs() << "Importing " << FunctionName << " from " << FileName << "\n"; in importFunctions()
264 auto &Entry = ImportList[FileName]; in importFunctions()