Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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;
1021 std::error_code setCurrentWorkingDirectory(const Twine &Path) override;
/openbsd-src/gnu/llvm/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.cpp274 std::error_code setCurrentWorkingDirectory(const Twine &Path) override;
335 std::error_code RealFileSystem::setCurrentWorkingDirectory(const Twine &Path) { in setCurrentWorkingDirectory() function in RealFileSystem
426 FS->setCurrentWorkingDirectory(getCurrentWorkingDirectory().get()); in pushOverlay()
457 OverlayFileSystem::setCurrentWorkingDirectory(const Twine &Path) { in setCurrentWorkingDirectory() function in OverlayFileSystem
459 if (std::error_code EC = FS->setCurrentWorkingDirectory(Path)) in setCurrentWorkingDirectory()
1134 std::error_code InMemoryFileSystem::setCurrentWorkingDirectory(const Twine &P) { in setCurrentWorkingDirectory() function in llvm::vfs::InMemoryFileSystem
1320 RedirectingFileSystem::setCurrentWorkingDirectory(const Twine &Path) { in setCurrentWorkingDirectory() function in RedirectingFileSystem
/openbsd-src/gnu/llvm/clang/lib/Tooling/DependencyScanning/
H A DDependencyScanningWorker.cpp394 BaseFS->setCurrentWorkingDirectory(WorkingDirectory); in computeDependencies()
406 InMemoryFS->setCurrentWorkingDirectory(WorkingDirectory); in computeDependencies()
/openbsd-src/gnu/llvm/clang/lib/Tooling/
H A DTooling.cpp551 if (OverlayFileSystem->setCurrentWorkingDirectory( in run()
599 OverlayFileSystem->setCurrentWorkingDirectory(InitialWorkingDir)) in run()
/openbsd-src/gnu/llvm/clang/lib/Driver/
H A DDriver.cpp1248 if (VFS->setCurrentWorkingDirectory(WD->getValue())) in BuildCompilation()