Home
last modified time | relevance | path

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

/external/clang/include/clang/Basic/
DVirtualFileSystem.h219 virtual std::error_code setCurrentWorkingDirectory(const Twine &Path) = 0;
270 std::error_code setCurrentWorkingDirectory(const Twine &Path) override;
316 std::error_code setCurrentWorkingDirectory(const Twine &Path) override;
/external/clang/lib/Basic/
DVirtualFileSystem.cpp203 std::error_code setCurrentWorkingDirectory(const Twine &Path) override;
230 std::error_code RealFileSystem::setCurrentWorkingDirectory(const Twine &Path) { in setCurrentWorkingDirectory() function in RealFileSystem
298 FS->setCurrentWorkingDirectory(getCurrentWorkingDirectory().get()); in pushOverlay()
328 OverlayFileSystem::setCurrentWorkingDirectory(const Twine &Path) { in setCurrentWorkingDirectory() function in OverlayFileSystem
330 if (std::error_code EC = FS->setCurrentWorkingDirectory(Path)) in setCurrentWorkingDirectory()
679 std::error_code InMemoryFileSystem::setCurrentWorkingDirectory(const Twine &P) { in setCurrentWorkingDirectory() function in clang::vfs::InMemoryFileSystem
906 std::error_code setCurrentWorkingDirectory(const Twine &Path) override { in setCurrentWorkingDirectory() function in __anonab1edbe20711::RedirectingFileSystem
907 return ExternalFS->setCurrentWorkingDirectory(Path); in setCurrentWorkingDirectory()
/external/clang/unittests/Basic/
DVirtualFileSystemTest.cpp67 std::error_code setCurrentWorkingDirectory(const Twine &Path) override { in setCurrentWorkingDirectory() function in __anon73ed79de0111::DummyFileSystem
633 FS.setCurrentWorkingDirectory("/b"); in TEST_F()
648 NormalizedFS.setCurrentWorkingDirectory("/b/c"); in TEST_F()
649 NormalizedFS.setCurrentWorkingDirectory("."); in TEST_F()
652 NormalizedFS.setCurrentWorkingDirectory(".."); in TEST_F()
/external/clang/lib/Tooling/
DTooling.cpp409 if (OverlayFileSystem->setCurrentWorkingDirectory( in run()
453 if (OverlayFileSystem->setCurrentWorkingDirectory(InitialDirectory.c_str())) in run()