Home
last modified time | relevance | path

Searched refs:ModuleMapPath (Results 1 – 11 of 11) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/modularize/
H A DModuleAssistant.cpp252 static bool writeModuleMap(llvm::StringRef ModuleMapPath, in writeModuleMap() argument
254 llvm::SmallString<256> HeaderDirectory(ModuleMapPath); in writeModuleMap()
262 llvm::sys::path::append(FilePath, ModuleMapPath); in writeModuleMap()
265 FilePath = ModuleMapPath; in writeModuleMap()
282 OS << "// " << ModuleMapPath << "\n"; in writeModuleMap()
298 bool createModuleMap(llvm::StringRef ModuleMapPath, in createModuleMap() argument
312 return writeModuleMap(ModuleMapPath, HeaderPrefix, RootModule.get()); in createModuleMap()
H A DCoverageChecker.cpp144 CoverageChecker::CoverageChecker(StringRef ModuleMapPath, in CoverageChecker() argument
148 : ModuleMapPath(ModuleMapPath), IncludePaths(IncludePaths), in CoverageChecker()
155 StringRef ModuleMapPath, std::vector<std::string> &IncludePaths, in createCoverageChecker() argument
158 return std::make_unique<CoverageChecker>(ModuleMapPath, IncludePaths, in createCoverageChecker()
321 ModuleMapDirectory = ModularizeUtilities::getDirectoryFromPath(ModuleMapPath); in collectFileSystemHeaders()
418 llvm::errs() << "warning: " << ModuleMapPath in findUnaccountedForHeaders()
H A DCoverageChecker.h42 llvm::StringRef ModuleMapPath; variable
78 CoverageChecker(llvm::StringRef ModuleMapPath,
94 llvm::StringRef ModuleMapPath, std::vector<std::string> &IncludePaths,
H A DModularize.h47 bool createModuleMap(llvm::StringRef ModuleMapPath,
H A DModularize.cpp283 static cl::opt<std::string> ModuleMapPath( variable
841 if (ModuleMapPath.length() != 0) { in main()
842 if (!createModuleMap(ModuleMapPath, ModUtil->HeaderFileNames, in main()
/llvm-project-15.0.7/clang/lib/Lex/
H A DHeaderSearch.cpp217 StringRef ModuleMapPath = ModuleMap->getName(); in getPrebuiltImplicitModuleFileName() local
224 getCachedModuleFileNameImpl(ModuleName, ModuleMapPath, CachePath); in getPrebuiltImplicitModuleFileName()
232 StringRef ModuleMapPath) { in getCachedModuleFileName() argument
233 return getCachedModuleFileNameImpl(ModuleName, ModuleMapPath, in getCachedModuleFileName()
238 StringRef ModuleMapPath, in getCachedModuleFileNameImpl() argument
259 std::string(llvm::sys::path::parent_path(ModuleMapPath)); in getCachedModuleFileNameImpl()
266 auto FileName = llvm::sys::path::filename(ModuleMapPath); in getCachedModuleFileNameImpl()
/llvm-project-15.0.7/clang/include/clang/Lex/
H A DHeaderSearch.h605 StringRef ModuleMapPath);
716 StringRef ModuleMapPath,
/llvm-project-15.0.7/clang/include/clang/Serialization/
H A DModuleFile.h155 std::string ModuleMapPath; variable
H A DASTReader.h126 virtual void ReadModuleMapFile(StringRef ModuleMapPath) {} in ReadModuleMapFile() argument
245 void ReadModuleMapFile(StringRef ModuleMapPath) override;
/llvm-project-15.0.7/clang/lib/Frontend/
H A DFrontendActions.cpp645 void ReadModuleMapFile(StringRef ModuleMapPath) override { in ReadModuleMapFile() argument
646 Out.indent(2) << "Module map file: " << ModuleMapPath << "\n"; in ReadModuleMapFile()
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTReader.cpp163 void ChainedASTReaderListener::ReadModuleMapFile(StringRef ModuleMapPath) { in ReadModuleMapFile() argument
164 First->ReadModuleMapFile(ModuleMapPath); in ReadModuleMapFile()
165 Second->ReadModuleMapFile(ModuleMapPath); in ReadModuleMapFile()
3957 F.ModuleMapPath = ReadPath(F, Record, Idx); in ReadModuleMapFileBlock()
3985 << (ImportedBy ? ImportedBy->FileName : "") << F.ModuleMapPath in ReadModuleMapFileBlock()
3992 << llvm::sys::path::parent_path(F.ModuleMapPath); in ReadModuleMapFileBlock()
4001 auto StoredModMap = FileMgr.getFile(F.ModuleMapPath); in ReadModuleMapFileBlock()
4010 << ModMap->getName() << F.ModuleMapPath << NotImported; in ReadModuleMapFileBlock()
4053 Listener->ReadModuleMapFile(F.ModuleMapPath); in ReadModuleMapFileBlock()
5605 CurrentModule->PresumedModuleMapFile = F.ModuleMapPath; in ReadSubmoduleBlock()