Lines Matching defs:filePath
23 void PathResolver::FindImportedFunctions(ArenaVector<EntityInfo> &overloadSet, std::string_view filePath,
27 auto *table = debugInfoStorage_.GetImportExportTable(filePath);
29 LOG(WARNING, ES2PANDA) << "Failed to find import/export table for " << filePath;
47 void PathResolver::FindExportedFunctions(ArenaVector<EntityInfo> &overloadSet, std::string_view filePath,
51 auto *table = debugInfoStorage_.GetImportExportTable(filePath);
53 LOG(WARNING, ES2PANDA) << "Failed to find import/export table for " << filePath;
64 overloadSet.push_back(EntityInfo(filePath, entity));
85 std::string_view PathResolver::FindNamedImportAll(std::string_view filePath, std::string_view bindingName)
87 auto *table = debugInfoStorage_.GetImportExportTable(filePath);
89 LOG(WARNING, ES2PANDA) << "Failed to find import/export table for " << filePath;
108 std::optional<EntityInfo> PathResolver::FindImportedEntity(std::string_view filePath, std::string_view entityName)
111 auto *table = debugInfoStorage_.GetImportExportTable(filePath);
113 LOG(WARNING, ES2PANDA) << "Failed to find import/export table for " << filePath;
136 std::optional<EntityInfo> PathResolver::FindExportedEntity(std::string_view filePath, std::string_view entityName)
139 auto *table = debugInfoStorage_.GetImportExportTable(filePath);
141 LOG(WARNING, ES2PANDA) << "Failed to find import/export table for " << filePath;
156 return EntityInfo(filePath, entity);