Searched refs:filePath (Results 1 - 8 of 8) sorted by relevance

/openbsd-current/gnu/llvm/clang/include/clang/ARCMigrate/
H A DFileRemapper.h48 bool initFromFile(StringRef filePath, DiagnosticsEngine &Diag,
56 void remap(StringRef filePath, std::unique_ptr<llvm::MemoryBuffer> memBuf);
72 const FileEntry *getOriginalFile(StringRef filePath);
/openbsd-current/gnu/llvm/clang/tools/clang-format-vs/ClangFormat/
H A DClangFormatPackage.cs260 private static bool FileHasExtension(string filePath, string fileExtensions) argument
263 return extensions.Contains(Path.GetExtension(filePath).ToLower());
302 string filePath = Vsix.GetDocumentPath(view);
304 RunClangFormatAndApplyReplacements(text, start, end, path, filePath, options, view);
326 string filePath = Vsix.GetDocumentPath(view);
327 var path = Path.GetDirectoryName(filePath);
336 RunClangFormatAndApplyReplacements(text, 0, text.Length, path, filePath, options, view);
339 private void RunClangFormatAndApplyReplacements(string text, int start, int end, string path, string filePath, OptionPageGrid options, IWpfTextView view) argument
343 string replacements = RunClangFormat(text, start, end, path, filePath, options);
368 private static string RunClangFormat(string text, int start, int end, string path, string filePath, OptionPageGri argument
[all...]
H A DVsix.cs54 public static IVsTextView GetVsTextViewFrompPath(string filePath) argument
64 if (VsShellUtilities.IsDocumentOpen(serviceProvider, filePath, Guid.Empty,
/openbsd-current/gnu/llvm/lld/MachO/
H A DLTO.cpp250 SmallString<261> filePath("/tmp/lto.tmp");
252 filePath = config->ltoObjPath;
254 path::append(filePath, Twine(i) + "." +
258 return filePath;
296 auto filePath = outputFilePath(i); local
299 saveOrHardlinkBuffer(objBuf, filePath, cachePath);
300 modTime = getModTime(filePath);
303 MemoryBufferRef(objBuf, saver().save(filePath.str())), modTime, ""));
/openbsd-current/gnu/llvm/clang/lib/ARCMigrate/
H A DFileRemapper.cpp55 bool FileRemapper::initFromFile(StringRef filePath, DiagnosticsEngine &Diag, argument
59 std::string infoFile = std::string(filePath);
223 void FileRemapper::remap(StringRef filePath, argument
225 remap(getOriginalFile(filePath), std::move(memBuf));
244 const FileEntry *FileRemapper::getOriginalFile(StringRef filePath) { argument
246 if (auto fileOrErr = FileMgr->getFile(filePath))
H A DARCMT.cpp610 SmallString<64> filePath(file->getName());
611 Unit->getFileManager().FixupRelativePath(filePath);
612 Remapper.remap(filePath.str(), std::move(memBuf));
H A DObjCMT.cpp1970 SmallString<64> filePath(file->getName());
1971 FileMgr.FixupRelativePath(filePath);
1972 Remapper.remap(filePath.str(), std::move(memBuf));
/openbsd-current/gnu/llvm/clang/lib/Frontend/
H A DPrecompiledPreamble.cpp368 llvm::StringRef filePath() const { function in class:PrecompiledPreamble::PCHStorage
437 StoreInMemory ? getInMemoryPreamblePath() : Storage->filePath());
577 if (llvm::sys::fs::file_size(Storage->filePath(), Result))
779 llvm::StringRef PCHPath = Storage.filePath();

Completed in 195 milliseconds