Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/googletest/googletest/test/
H A Dgoogletest-filepath-test.cc615 TEST(FilePathTest, IsAbsolutePath) { in TEST() argument
616 EXPECT_FALSE(FilePath("is" GTEST_PATH_SEP_ "relative").IsAbsolutePath()); in TEST()
617 EXPECT_FALSE(FilePath("").IsAbsolutePath()); in TEST()
620 GTEST_PATH_SEP_ "relative").IsAbsolutePath()); in TEST()
621 EXPECT_FALSE(FilePath("c:foo" GTEST_PATH_SEP_ "bar").IsAbsolutePath()); in TEST()
623 GTEST_PATH_SEP_ "relative").IsAbsolutePath()); in TEST()
626 .IsAbsolutePath()); in TEST()
/freebsd-13.1/contrib/googletest/googletest/src/
H A Dgtest-filepath.cc256 return pathname_.length() == 3 && IsAbsolutePath(); in IsRootDirectory()
263 bool FilePath::IsAbsolutePath() const { in IsAbsolutePath() function in testing::internal::FilePath
H A Dgtest.cc486 if (!output_name.IsAbsolutePath()) in GetAbsolutePathToOutputFile()
/freebsd-13.1/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-filepath.h173 bool IsAbsolutePath() const;
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_file.h83 bool IsAbsolutePath(const char *path);
H A Dsanitizer_suppressions.cpp55 if (!FileExists(file_path) && !IsAbsolutePath(file_path) && in FindFile()
H A Dsanitizer_posix.cpp266 bool IsAbsolutePath(const char *path) { in IsAbsolutePath() function
H A Dsanitizer_win.cpp542 bool IsAbsolutePath(const char *path) { in IsAbsolutePath() function
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerUtilFuchsia.cpp453 bool IsAbsolutePath = Path.length() > 1 && Path[0] == '/'; in ExecuteCommand() local
454 if (!IsAbsolutePath && Cmd.hasFlag("artifact_prefix")) in ExecuteCommand()