Home
last modified time | relevance | path

Searched refs:setCurrentWorkingDirectory (Results 1 – 8 of 8) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DVirtualFileSystem.h291 virtual std::error_code setCurrentWorkingDirectory(const Twine &Path) = 0;
384 std::error_code setCurrentWorkingDirectory(const Twine &Path) override;
441 std::error_code setCurrentWorkingDirectory(const Twine &Path) override { in setCurrentWorkingDirectory() function
442 return FS->setCurrentWorkingDirectory(Path); in setCurrentWorkingDirectory()
606 std::error_code setCurrentWorkingDirectory(const Twine &Path) override;
1029 std::error_code setCurrentWorkingDirectory(const Twine &Path) override;
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DFileCollector.cpp302 std::error_code setCurrentWorkingDirectory(const llvm::Twine &Path) override { in setCurrentWorkingDirectory() function in llvm::FileCollectorFileSystem
303 return FS->setCurrentWorkingDirectory(Path); in setCurrentWorkingDirectory()
H A DVirtualFileSystem.cpp275 std::error_code setCurrentWorkingDirectory(const Twine &Path) override;
338 std::error_code RealFileSystem::setCurrentWorkingDirectory(const Twine &Path) { in setCurrentWorkingDirectory() function in RealFileSystem
429 FS->setCurrentWorkingDirectory(getCurrentWorkingDirectory().get()); in pushOverlay()
460 OverlayFileSystem::setCurrentWorkingDirectory(const Twine &Path) { in setCurrentWorkingDirectory() function in OverlayFileSystem
462 if (std::error_code EC = FS->setCurrentWorkingDirectory(Path)) in setCurrentWorkingDirectory()
1136 std::error_code InMemoryFileSystem::setCurrentWorkingDirectory(const Twine &P) { in setCurrentWorkingDirectory() function in llvm::vfs::InMemoryFileSystem
1322 RedirectingFileSystem::setCurrentWorkingDirectory(const Twine &Path) { in setCurrentWorkingDirectory() function in RedirectingFileSystem
/freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DDependencyScanningFilesystem.cpp362 std::error_code DependencyScanningWorkerFilesystem::setCurrentWorkingDirectory( in setCurrentWorkingDirectory() function in DependencyScanningWorkerFilesystem
364 std::error_code EC = ProxyFileSystem::setCurrentWorkingDirectory(Path); in setCurrentWorkingDirectory()
H A DDependencyScanningWorker.cpp428 BaseFS->setCurrentWorkingDirectory(WorkingDirectory); in computeDependencies()
441 InMemoryFS->setCurrentWorkingDirectory(WorkingDirectory); in computeDependencies()
/freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/
H A DTooling.cpp582 if (OverlayFileSystem->setCurrentWorkingDirectory( in run()
634 OverlayFileSystem->setCurrentWorkingDirectory(InitialWorkingDir)) in run()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/
H A DDependencyScanningFilesystem.h293 std::error_code setCurrentWorkingDirectory(const Twine &Path) override;
/freebsd-14.2/contrib/llvm-project/clang/lib/Driver/
H A DDriver.cpp1253 if (VFS->setCurrentWorkingDirectory(WD->getValue())) in BuildCompilation()