/external/llvm-project/clang-tools-extra/modularize/ |
D | ModuleAssistant.cpp | 252 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()
|
D | CoverageChecker.cpp | 144 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() 419 llvm::errs() << "warning: " << ModuleMapPath in findUnaccountedForHeaders()
|
D | CoverageChecker.h | 42 llvm::StringRef ModuleMapPath; variable 78 CoverageChecker(llvm::StringRef ModuleMapPath, 94 llvm::StringRef ModuleMapPath, std::vector<std::string> &IncludePaths,
|
D | Modularize.h | 47 bool createModuleMap(llvm::StringRef ModuleMapPath,
|
D | Modularize.cpp | 284 static cl::opt<std::string> ModuleMapPath( variable 843 if (ModuleMapPath.length() != 0) { in main() 844 if (!createModuleMap(ModuleMapPath, ModUtil->HeaderFileNames, in main()
|
/external/llvm-project/clang/lib/Lex/ |
D | HeaderSearch.cpp | 171 StringRef ModuleMapPath = ModuleMap->getName(); in getPrebuiltImplicitModuleFileName() local 178 getCachedModuleFileNameImpl(ModuleName, ModuleMapPath, CachePath); in getPrebuiltImplicitModuleFileName() 186 StringRef ModuleMapPath) { in getCachedModuleFileName() argument 187 return getCachedModuleFileNameImpl(ModuleName, ModuleMapPath, in getCachedModuleFileName() 192 StringRef ModuleMapPath, in getCachedModuleFileNameImpl() argument 213 std::string(llvm::sys::path::parent_path(ModuleMapPath)); in getCachedModuleFileNameImpl() 220 auto FileName = llvm::sys::path::filename(ModuleMapPath); in getCachedModuleFileNameImpl()
|
/external/llvm-project/clang/include/clang/Lex/ |
D | HeaderSearch.h | 544 StringRef ModuleMapPath); 648 StringRef ModuleMapPath,
|
/external/clang/include/clang/Serialization/ |
D | Module.h | 143 std::string ModuleMapPath; variable
|
D | ASTReader.h | 117 virtual void ReadModuleMapFile(StringRef ModuleMapPath) {} in ReadModuleMapFile() argument 233 void ReadModuleMapFile(StringRef ModuleMapPath) override;
|
/external/llvm-project/clang/include/clang/Serialization/ |
D | ModuleFile.h | 154 std::string ModuleMapPath; variable
|
D | ASTReader.h | 125 virtual void ReadModuleMapFile(StringRef ModuleMapPath) {} in ReadModuleMapFile() argument 244 void ReadModuleMapFile(StringRef ModuleMapPath) override;
|
/external/clang/lib/Frontend/ |
D | FrontendActions.cpp | 471 void ReadModuleMapFile(StringRef ModuleMapPath) override { in ReadModuleMapFile() argument 472 Out.indent(2) << "Module map file: " << ModuleMapPath << "\n"; in ReadModuleMapFile()
|
/external/clang/include/clang/Lex/ |
D | HeaderSearch.h | 486 std::string getModuleFileName(StringRef ModuleName, StringRef ModuleMapPath);
|
/external/clang/lib/Lex/ |
D | HeaderSearch.cpp | 129 StringRef ModuleMapPath) { in getModuleFileName() argument 149 FileMgr.getDirectory(llvm::sys::path::parent_path(ModuleMapPath)); in getModuleFileName() 153 auto FileName = llvm::sys::path::filename(ModuleMapPath); in getModuleFileName()
|
/external/llvm-project/clang/lib/Frontend/ |
D | FrontendActions.cpp | 542 void ReadModuleMapFile(StringRef ModuleMapPath) override { in ReadModuleMapFile() argument 543 Out.indent(2) << "Module map file: " << ModuleMapPath << "\n"; in ReadModuleMapFile()
|
/external/clang/lib/Serialization/ |
D | ASTReader.cpp | 82 void ChainedASTReaderListener::ReadModuleMapFile(StringRef ModuleMapPath) { in ReadModuleMapFile() argument 83 First->ReadModuleMapFile(ModuleMapPath); in ReadModuleMapFile() 84 Second->ReadModuleMapFile(ModuleMapPath); in ReadModuleMapFile() 3222 F.ModuleMapPath = ReadPath(F, Record, Idx); in ReadModuleMapFileBlock() 3254 << F.ModuleMapPath; in ReadModuleMapFileBlock() 3262 const FileEntry *StoredModMap = FileMgr.getFile(F.ModuleMapPath); in ReadModuleMapFileBlock() 3269 << ModMap->getName() << F.ModuleMapPath; in ReadModuleMapFileBlock() 3313 Listener->ReadModuleMapFile(F.ModuleMapPath); in ReadModuleMapFileBlock()
|
/external/llvm-project/clang/lib/Serialization/ |
D | ASTReader.cpp | 160 void ChainedASTReaderListener::ReadModuleMapFile(StringRef ModuleMapPath) { in ReadModuleMapFile() argument 161 First->ReadModuleMapFile(ModuleMapPath); in ReadModuleMapFile() 162 Second->ReadModuleMapFile(ModuleMapPath); in ReadModuleMapFile() 3891 F.ModuleMapPath = ReadPath(F, Record, Idx); in ReadModuleMapFileBlock() 3916 << (ImportedBy ? ImportedBy->FileName : "") << F.ModuleMapPath in ReadModuleMapFileBlock() 3923 << llvm::sys::path::parent_path(F.ModuleMapPath); in ReadModuleMapFileBlock() 3932 auto StoredModMap = FileMgr.getFile(F.ModuleMapPath); in ReadModuleMapFileBlock() 3941 << ModMap->getName() << F.ModuleMapPath << NotImported; in ReadModuleMapFileBlock() 3984 Listener->ReadModuleMapFile(F.ModuleMapPath); in ReadModuleMapFileBlock() 5528 CurrentModule->PresumedModuleMapFile = F.ModuleMapPath; in ReadSubmoduleBlock()
|