Lines Matching full:filepath
174 std::string FilePath;
181 FilePath = std::string(NativePath.substr(NativePrefix.size() + 1));
183 FilePath = std::string(HeaderFilePath);
188 llvm::errs() << "warning: " << FilePath
195 std::replace(FilePath.begin(), FilePath.end(), '\\', '/');
197 for (llvm::sys::path::const_iterator I = llvm::sys::path::begin(FilePath),
198 E = llvm::sys::path::end(FilePath);
213 CurrentModule->HeaderFileNames.push_back(FilePath);
258 llvm::SmallString<256> FilePath;
262 FilePath = HeaderPrefix;
264 llvm::sys::path::append(FilePath, ModuleMapPath);
265 llvm::sys::path::native(FilePath);
267 FilePath = ModuleMapPath;
268 llvm::sys::path::native(FilePath);
273 llvm::ToolOutputFile Out(FilePath, EC, llvm::sys::fs::OF_TextWithCRLF);
275 llvm::errs() << Argv0 << ": error opening " << FilePath << ":"