Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DVirtualFileSystem.h306 virtual std::error_code setCurrentWorkingDirectory(const Twine &Path) = 0;
414 std::error_code setCurrentWorkingDirectory(const Twine &Path) override;
475 std::error_code setCurrentWorkingDirectory(const Twine &Path) override { in setCurrentWorkingDirectory() function
476 return FS->setCurrentWorkingDirectory(Path); in setCurrentWorkingDirectory()
651 std::error_code setCurrentWorkingDirectory(const Twine &Path) override;
1083 std::error_code setCurrentWorkingDirectory(const Twine &Path) override;
/freebsd/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.cpp287 std::error_code setCurrentWorkingDirectory(const Twine &Path) override;
360 std::error_code RealFileSystem::setCurrentWorkingDirectory(const Twine &Path) { in setCurrentWorkingDirectory() function in RealFileSystem
450 FS->setCurrentWorkingDirectory(getCurrentWorkingDirectory().get()); in pushOverlay()
490 OverlayFileSystem::setCurrentWorkingDirectory(const Twine &Path) { in setCurrentWorkingDirectory() function in OverlayFileSystem
492 if (std::error_code EC = FS->setCurrentWorkingDirectory(Path)) in setCurrentWorkingDirectory()
1173 std::error_code InMemoryFileSystem::setCurrentWorkingDirectory(const Twine &P) { in setCurrentWorkingDirectory() function in llvm::vfs::InMemoryFileSystem
1358 RedirectingFileSystem::setCurrentWorkingDirectory(const Twine &Path) { in setCurrentWorkingDirectory() function in RedirectingFileSystem
/freebsd/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DDependencyScanningWorker.cpp806 BaseFS->setCurrentWorkingDirectory(WorkingDirectory); in computeDependencies()
819 InMemoryFS->setCurrentWorkingDirectory(WorkingDirectory); in computeDependencies()
846 BaseFS->setCurrentWorkingDirectory(WorkingDirectory); in computeDependencies()
854 InMemoryFS->setCurrentWorkingDirectory(WorkingDirectory); in computeDependencies()
H A DDependencyScanningFilesystem.cpp463 std::error_code DependencyScanningWorkerFilesystem::setCurrentWorkingDirectory( in setCurrentWorkingDirectory() function in DependencyScanningWorkerFilesystem
465 std::error_code EC = ProxyFileSystem::setCurrentWorkingDirectory(Path); in setCurrentWorkingDirectory()
/freebsd/contrib/llvm-project/clang/lib/Testing/
H A DTestAST.cpp90 if (auto Err = VFS->setCurrentWorkingDirectory(In.WorkingDir)) in TestAST()
/freebsd/contrib/llvm-project/clang/lib/Tooling/
H A DTooling.cpp580 if (OverlayFileSystem->setCurrentWorkingDirectory( in run()
632 OverlayFileSystem->setCurrentWorkingDirectory(InitialWorkingDir)) in run()
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/
H A DDependencyScanningFilesystem.h384 std::error_code setCurrentWorkingDirectory(const Twine &Path) override;
/freebsd/contrib/llvm-project/clang/lib/Driver/
H A DDriver.cpp1536 if (VFS->setCurrentWorkingDirectory(WD->getValue())) in BuildCompilation()