Home
last modified time | relevance | path

Searched refs:IsAbsolutePath (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/googletest/googletest/test/
H A Dgoogletest-filepath-test.cc620 TEST(FilePathTest, IsAbsolutePath) { in TEST() argument
621 EXPECT_FALSE(FilePath("is" GTEST_PATH_SEP_ "relative").IsAbsolutePath()); in TEST()
622 EXPECT_FALSE(FilePath("").IsAbsolutePath()); in TEST()
626 .IsAbsolutePath()); in TEST()
627 EXPECT_FALSE(FilePath("c:foo" GTEST_PATH_SEP_ "bar").IsAbsolutePath()); in TEST()
630 .IsAbsolutePath()); in TEST()
631 EXPECT_TRUE(FilePath("d:/Windows").IsAbsolutePath()); in TEST()
632 EXPECT_TRUE(FilePath("\\\\Host\\Share").IsAbsolutePath()); in TEST()
633 EXPECT_TRUE(FilePath("\\\\Host\\Share\\Folder").IsAbsolutePath()); in TEST()
636 .IsAbsolutePath()); in TEST()
/freebsd/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-filepath.h177 bool IsAbsolutePath() const;
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_file.h84 bool IsAbsolutePath(const char *path);
H A Dsanitizer_suppressions.cpp55 if (!FileExists(file_path) && !IsAbsolutePath(file_path) && in FindFile()
H A Dsanitizer_posix.cpp278 bool IsAbsolutePath(const char *path) { in IsAbsolutePath() function
H A Dsanitizer_win.cpp573 bool IsAbsolutePath(const char *path) { in IsAbsolutePath() function
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerUtilFuchsia.cpp508 bool IsAbsolutePath = Path.length() > 1 && Path[0] == '/'; in ExecuteCommand() local
509 if (!IsAbsolutePath && Cmd.hasFlag("artifact_prefix")) in ExecuteCommand()
/freebsd/contrib/googletest/googletest/src/
H A Dgtest-filepath.cc302 bool FilePath::IsAbsolutePath() const { return CalculateRootLength() > 0; } in IsAbsolutePath() function in testing::internal::FilePath
H A Dgtest.cc683 if (!output_name.IsAbsolutePath()) in GetAbsolutePathToOutputFile()