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.h291 virtual std::error_code setCurrentWorkingDirectory(const Twine &Path) = 0;
398 std::error_code setCurrentWorkingDirectory(const Twine &Path) override;
458 std::error_code setCurrentWorkingDirectory(const Twine &Path) override { in setCurrentWorkingDirectory() function
459 return FS->setCurrentWorkingDirectory(Path); in setCurrentWorkingDirectory()
633 std::error_code setCurrentWorkingDirectory(const Twine &Path) override;
1061 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.cpp285 std::error_code setCurrentWorkingDirectory(const Twine &Path) override;
348 std::error_code RealFileSystem::setCurrentWorkingDirectory(const Twine &Path) { in setCurrentWorkingDirectory() function in RealFileSystem
438 FS->setCurrentWorkingDirectory(getCurrentWorkingDirectory().get()); in pushOverlay()
478 OverlayFileSystem::setCurrentWorkingDirectory(const Twine &Path) { in setCurrentWorkingDirectory() function in OverlayFileSystem
480 if (std::error_code EC = FS->setCurrentWorkingDirectory(Path)) in setCurrentWorkingDirectory()
1161 std::error_code InMemoryFileSystem::setCurrentWorkingDirectory(const Twine &P) { in setCurrentWorkingDirectory() function in llvm::vfs::InMemoryFileSystem
1346 RedirectingFileSystem::setCurrentWorkingDirectory(const Twine &Path) { in setCurrentWorkingDirectory() function in RedirectingFileSystem
/freebsd/contrib/llvm-project/clang/lib/Testing/
H A DTestAST.cpp110 if (auto Err = VFS->setCurrentWorkingDirectory(In.WorkingDir)) in TestAST()
/freebsd/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DDependencyScanningFilesystem.cpp422 std::error_code DependencyScanningWorkerFilesystem::setCurrentWorkingDirectory( in setCurrentWorkingDirectory() function in DependencyScanningWorkerFilesystem
424 std::error_code EC = ProxyFileSystem::setCurrentWorkingDirectory(Path); in setCurrentWorkingDirectory()
H A DDependencyScanningWorker.cpp595 BaseFS->setCurrentWorkingDirectory(WorkingDirectory); in computeDependencies()
608 InMemoryFS->setCurrentWorkingDirectory(WorkingDirectory); in computeDependencies()
/freebsd/contrib/llvm-project/clang/lib/Tooling/
H A DTooling.cpp582 if (OverlayFileSystem->setCurrentWorkingDirectory( in run()
634 OverlayFileSystem->setCurrentWorkingDirectory(InitialWorkingDir)) in run()
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/
H A DDependencyScanningFilesystem.h354 std::error_code setCurrentWorkingDirectory(const Twine &Path) override;
/freebsd/contrib/llvm-project/clang/lib/Driver/
H A DDriver.cpp1267 if (VFS->setCurrentWorkingDirectory(WD->getValue())) in BuildCompilation()