Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/unittests/Support/
H A DMemoryBufferTest.cpp101 SmallString<64> TestPath; in TEST_F() local
106 FileRemover Cleanup(TestPath); in TEST_F()
134 SmallString<64> TestPath; in TEST_F() local
137 FileRemover Cleanup(TestPath); in TEST_F()
234 SmallString<64> TestPath; in testGetOpenFileSlice() local
237 FileRemover Cleanup(TestPath); in testGetOpenFileSlice()
277 SmallString<64> TestPath; in TEST_F() local
279 FileRemover Cleanup(TestPath); in TEST_F()
324 SmallString<64> TestPath; in TEST_F() local
357 SmallString<64> TestPath; in TEST_F() local
[all …]
/llvm-project-15.0.7/libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/
H A Dsource.pass.cpp45 const CharT* TestPath = MS; in RunTestCase() local
62 assert(p.string<CharT>() == TestPath); in RunTestCase()
74 assert(p.string<CharT>() == TestPath); in RunTestCase()
88 assert(p.string<CharT>() == TestPath); in RunTestCase()
100 assert(p.string<CharT>() == TestPath); in RunTestCase()
111 path& pref = (p = TestPath); in RunTestCase()
115 assert(p.string<CharT>() == TestPath); in RunTestCase()
121 path& pref = p.assign(TestPath); in RunTestCase()
142 It it(TestPath); in RunTestCase()
155 It it(TestPath); in RunTestCase()
[all …]
/llvm-project-15.0.7/libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/
H A Dsource.pass.cpp38 const CharT* TestPath = MS; in RunTestCaseImpl() local
39 const CharT* TestPathEnd = StrEnd(TestPath); in RunTestCaseImpl()
48 assert(p.string<CharT>() == TestPath); in RunTestCaseImpl()
55 assert(p.string<CharT>() == TestPath); in RunTestCaseImpl()
60 path p(TestPath, args...); in RunTestCaseImpl()
62 assert(p.string<CharT>() == TestPath); in RunTestCaseImpl()
65 path p(TestPath, TestPathEnd, args...); in RunTestCaseImpl()
67 assert(p.string<CharT>() == TestPath); in RunTestCaseImpl()
72 path p(It{TestPath}, args...); in RunTestCaseImpl()
74 assert(p.string<CharT>() == TestPath); in RunTestCaseImpl()
[all …]
/llvm-project-15.0.7/clang/unittests/Tooling/
H A DDependencyScannerTest.cpp93 std::string TestPath = std::string(llvm::formatv("{0}root{0}test.cpp", Sept)); in TEST() local
97 VFS->addFile(TestPath, 0, in TEST()
142 std::string TestPath = std::string(llvm::formatv("{0}root{0}test.cpp", Sept)); in TEST() local
149 VFS->addFile(TestPath, 0, in TEST()
184 std::string TestPath = std::string(llvm::formatv("{0}root{0}test.cpp", Sept)); in TEST() local
189 TestPath, 0, in TEST()
224 std::string TestPath = std::string(llvm::formatv("{0}root{0}test.cpp", Sept)); in TEST() local
227 VFS->addFile(TestPath, 0, in TEST()
/llvm-project-15.0.7/llvm/lib/WindowsDriver/
H A DMSVCPaths.cpp390 SmallString<128> TestPath(getSubDirectoryPath( in useUniversalCRT() local
392 sys::path::append(TestPath, "stdlib.h"); in useUniversalCRT()
393 return !VFS.exists(TestPath); in useUniversalCRT()
432 SmallString<128> TestPath(Path); in getWindowsSDKDir() local
433 sys::path::append(TestPath, "Lib", Test); in getWindowsSDKDir()
434 if (VFS.exists(TestPath)) { in getWindowsSDKDir()
551 StringRef TestPath = PathEntry; in findVCToolChainViaEnvironment() local
552 bool IsBin = sys::path::filename(TestPath).equals_insensitive("bin"); in findVCToolChainViaEnvironment()
555 TestPath = sys::path::parent_path(TestPath); in findVCToolChainViaEnvironment()
556 IsBin = sys::path::filename(TestPath).equals_insensitive("bin"); in findVCToolChainViaEnvironment()
[all …]
/llvm-project-15.0.7/clang/unittests/Frontend/
H A DCodeGenActionTest.cpp88 std::string TestPath = in TEST() local
90 VFS->addFile(TestPath, 0, llvm::MemoryBuffer::getMemBuffer("int x;\n")); in TEST()