Lines Matching refs:InputPath
76 llvm::StringRef InputPath = *I; in loadAllHeaderListsAndDependencies() local
78 if (InputPath.endswith(".modulemap")) { in loadAllHeaderListsAndDependencies()
80 if (std::error_code EC = loadModuleMap(InputPath)) in loadAllHeaderListsAndDependencies()
85 if (std::error_code EC = loadSingleHeaderListsAndDependencies(InputPath)) { in loadAllHeaderListsAndDependencies()
86 errs() << "modularize: error: Unable to get header list '" << InputPath in loadAllHeaderListsAndDependencies()
134 llvm::StringRef InputPath) { in loadSingleHeaderListsAndDependencies() argument
137 SmallString<256> HeaderDirectory(InputPath); in loadSingleHeaderListsAndDependencies()
148 MemoryBuffer::getFile(InputPath); in loadSingleHeaderListsAndDependencies()
207 llvm::StringRef InputPath) { in loadProblemHeaderList() argument
210 SmallString<256> HeaderDirectory(InputPath); in loadProblemHeaderList()
221 MemoryBuffer::getFile(InputPath); in loadProblemHeaderList()
259 llvm::StringRef InputPath) { in loadModuleMap() argument
262 SourceMgr->getFileManager().getFile(InputPath); in loadModuleMap()
266 llvm::errs() << "error: File \"" << InputPath << "\" not found.\n"; in loadModuleMap()