Home
last modified time | relevance | path

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

12

/external/llvm-project/clang/unittests/Tooling/
DDependencyScannerTest.cpp84 VFS->setCurrentWorkingDirectory(CWD); in TEST()
133 VFS->setCurrentWorkingDirectory(CWD); in TEST()
175 VFS->setCurrentWorkingDirectory(CWD); in TEST()
/external/llvm-project/llvm/unittests/Support/
DVirtualFileSystemTest.cpp76 std::error_code setCurrentWorkingDirectory(const Twine &Path) override { in setCurrentWorkingDirectory() function in __anon47feb29b0111::DummyFileSystem
177 std::error_code setCurrentWorkingDirectory(const Twine &Path) override { in setCurrentWorkingDirectory() function in __anon47feb29b0111::ErrorDummyFileSystem
458 ASSERT_FALSE(BFS->setCurrentWorkingDirectory(BDir.path())); in TEST()
459 ASSERT_FALSE(CFS->setCurrentWorkingDirectory(C.path())); in TEST()
871 ASSERT_FALSE(PFS.setCurrentWorkingDirectory("/")); in TEST()
1008 FS.setCurrentWorkingDirectory("/b"); in TEST_F()
1019 NormalizedFS.setCurrentWorkingDirectory("/b/c"); in TEST_F()
1020 NormalizedFS.setCurrentWorkingDirectory("."); in TEST_F()
1023 NormalizedFS.setCurrentWorkingDirectory(".."); in TEST_F()
1029 FS.setCurrentWorkingDirectory("/b"); in TEST_F()
[all …]
DCommandLineTest.cpp791 FS.setCurrentWorkingDirectory(TestRoot); in TEST()
847 FS.setCurrentWorkingDirectory(TestRoot); in TEST()
911 FS.setCurrentWorkingDirectory(TestRoot); in TEST()
952 FS.setCurrentWorkingDirectory(TestRoot); in TEST()
980 FS.setCurrentWorkingDirectory(TestRoot); in TEST()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DVirtualFileSystem.h268 virtual std::error_code setCurrentWorkingDirectory(const Twine &Path) = 0;
339 std::error_code setCurrentWorkingDirectory(const Twine &Path) override;
387 std::error_code setCurrentWorkingDirectory(const Twine &Path) override { in setCurrentWorkingDirectory() function
388 return FS->setCurrentWorkingDirectory(Path); in setCurrentWorkingDirectory()
493 std::error_code setCurrentWorkingDirectory(const Twine &Path) override;
748 std::error_code setCurrentWorkingDirectory(const Twine &Path) override;
/external/llvm-project/llvm/include/llvm/Support/
DVirtualFileSystem.h269 virtual std::error_code setCurrentWorkingDirectory(const Twine &Path) = 0;
340 std::error_code setCurrentWorkingDirectory(const Twine &Path) override;
388 std::error_code setCurrentWorkingDirectory(const Twine &Path) override { in setCurrentWorkingDirectory() function
389 return FS->setCurrentWorkingDirectory(Path); in setCurrentWorkingDirectory()
495 std::error_code setCurrentWorkingDirectory(const Twine &Path) override;
747 std::error_code setCurrentWorkingDirectory(const Twine &Path) override;
/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/llvm-project/clang-tools-extra/clangd/unittests/tweaks/
DTweakTests.cpp48 MemFS->setCurrentWorkingDirectory(testRoot()); in TEST()
/external/llvm-project/clang/unittests/Basic/
DFileManagerTest.cpp450 ASSERT_TRUE(!FS->setCurrentWorkingDirectory(CustomWorkingDir)); in TEST_F()
476 ASSERT_TRUE(!FS->setCurrentWorkingDirectory(CustomWorkingDir)); in TEST_F()
509 ASSERT_TRUE(!FS->setCurrentWorkingDirectory(CustomWorkingDir)); in TEST_F()
542 ASSERT_TRUE(!FS->setCurrentWorkingDirectory(CustomWorkingDir)); in TEST_F()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DFileCollector.cpp253 std::error_code setCurrentWorkingDirectory(const llvm::Twine &Path) override { in setCurrentWorkingDirectory() function in __anonc872f58e0111::FileCollectorFileSystem
254 return FS->setCurrentWorkingDirectory(Path); in setCurrentWorkingDirectory()
DVirtualFileSystem.cpp260 std::error_code setCurrentWorkingDirectory(const Twine &Path) override;
317 std::error_code RealFileSystem::setCurrentWorkingDirectory(const Twine &Path) { in setCurrentWorkingDirectory() function in RealFileSystem
397 FS->setCurrentWorkingDirectory(getCurrentWorkingDirectory().get()); in pushOverlay()
428 OverlayFileSystem::setCurrentWorkingDirectory(const Twine &Path) { in setCurrentWorkingDirectory() function in OverlayFileSystem
430 if (std::error_code EC = FS->setCurrentWorkingDirectory(Path)) in setCurrentWorkingDirectory()
950 std::error_code InMemoryFileSystem::setCurrentWorkingDirectory(const Twine &P) { in setCurrentWorkingDirectory() function in llvm::vfs::InMemoryFileSystem
1052 RedirectingFileSystem::setCurrentWorkingDirectory(const Twine &Path) { in setCurrentWorkingDirectory() function in RedirectingFileSystem
1059 auto EC = ExternalFS->setCurrentWorkingDirectory(Path); in setCurrentWorkingDirectory()
/external/llvm-project/clang-tools-extra/clangd/support/
DThreadsafeFS.cpp80 if (auto EC = FS->setCurrentWorkingDirectory(CWD)) in view()
/external/llvm-project/llvm/lib/Support/
DFileCollector.cpp279 std::error_code setCurrentWorkingDirectory(const llvm::Twine &Path) override { in setCurrentWorkingDirectory() function in llvm::FileCollectorFileSystem
280 return FS->setCurrentWorkingDirectory(Path); in setCurrentWorkingDirectory()
DVirtualFileSystem.cpp260 std::error_code setCurrentWorkingDirectory(const Twine &Path) override;
317 std::error_code RealFileSystem::setCurrentWorkingDirectory(const Twine &Path) { in setCurrentWorkingDirectory() function in RealFileSystem
397 FS->setCurrentWorkingDirectory(getCurrentWorkingDirectory().get()); in pushOverlay()
428 OverlayFileSystem::setCurrentWorkingDirectory(const Twine &Path) { in setCurrentWorkingDirectory() function in OverlayFileSystem
430 if (std::error_code EC = FS->setCurrentWorkingDirectory(Path)) in setCurrentWorkingDirectory()
949 std::error_code InMemoryFileSystem::setCurrentWorkingDirectory(const Twine &P) { in setCurrentWorkingDirectory() function in llvm::vfs::InMemoryFileSystem
1073 RedirectingFileSystem::setCurrentWorkingDirectory(const Twine &Path) { in setCurrentWorkingDirectory() function in RedirectingFileSystem
1080 auto EC = ExternalFS->setCurrentWorkingDirectory(Path); in setCurrentWorkingDirectory()
/external/llvm-project/lldb/source/Initialization/
DSystemInitializerCommon.cpp61 ->setCurrentWorkingDirectory(*working_dir)) { in InitializeFileSystem()
/external/llvm-project/clang-tools-extra/clangd/unittests/
DTestFS.cpp26 MemFS->setCurrentWorkingDirectory(testRoot()); in buildTestFS()
/external/llvm-project/lldb/unittests/Host/
DFileSystemTest.cpp66 std::error_code setCurrentWorkingDirectory(const Twine &Path) override { in setCurrentWorkingDirectory() function in __anon7e4cd0180111::DummyFileSystem
182 D->setCurrentWorkingDirectory("/"); in GetSimpleDummyFS()
/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 __anon45e96e000711::RedirectingFileSystem
907 return ExternalFS->setCurrentWorkingDirectory(Path); in setCurrentWorkingDirectory()
/external/llvm-project/clang/lib/Tooling/DependencyScanning/
DDependencyScanningWorker.cpp186 RealFS->setCurrentWorkingDirectory(WorkingDirectory); in computeDependencies()
/external/clang/unittests/Basic/
DVirtualFileSystemTest.cpp67 std::error_code setCurrentWorkingDirectory(const Twine &Path) override { in setCurrentWorkingDirectory() function in __anon1373c97c0111::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/llvm-project/clang/unittests/Frontend/
DPCHPreambleTest.cpp66 VFS->setCurrentWorkingDirectory("//./"); in ResetVFS()
/external/clang/lib/Tooling/
DTooling.cpp409 if (OverlayFileSystem->setCurrentWorkingDirectory( in run()
453 if (OverlayFileSystem->setCurrentWorkingDirectory(InitialDirectory.c_str())) in run()
/external/llvm-project/clang/lib/Tooling/
DTooling.cpp512 if (OverlayFileSystem->setCurrentWorkingDirectory( in run()
560 OverlayFileSystem->setCurrentWorkingDirectory(InitialWorkingDir)) in run()
/external/llvm-project/clang-tools-extra/clang-tidy/
DClangTidy.cpp595 FileSystem.setCurrentWorkingDirectory(Error.BuildDirectory); in handleErrors()
599 FileSystem.setCurrentWorkingDirectory(InitialWorkingDir.get()); in handleErrors()
/external/llvm-project/clang-tools-extra/unittests/clang-move/
DClangMoveTests.cpp211 Context.InMemoryFileSystem->setCurrentWorkingDirectory(WorkingDir); in runClangMoveOnCode()
/external/llvm-project/lldb/source/Utility/
DReproducer.cpp307 vfs->setCurrentWorkingDirectory(*working_dir); in Verify()

12