Home
last modified time | relevance | path

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

/freebsd-src/contrib/googletest/googletest/test/
H A Dgoogletest-filepath-test.cc602 TEST(FilePathTest, RemoveExtension) { in TEST() argument
603 EXPECT_EQ("app", FilePath("app.cc").RemoveExtension("cc").string()); in TEST()
604 EXPECT_EQ("app", FilePath("app.exe").RemoveExtension("exe").string()); in TEST()
605 EXPECT_EQ("APP", FilePath("APP.EXE").RemoveExtension("exe").string()); in TEST()
609 EXPECT_EQ("app", FilePath("app").RemoveExtension("exe").string()); in TEST()
/freebsd-src/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-filepath.h148 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
151 FilePath RemoveExtension(const char* extension) const;
/freebsd-src/contrib/googletest/googletest/src/
H A Dgtest-filepath.cc127 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
130 FilePath FilePath::RemoveExtension(const char* extension) const { in RemoveExtension() function in testing::internal::FilePath
H A Dgtest.cc667 result.Set(FilePath(args[0]).RemoveExtension("exe")); in GetAbsolutePathToOutputFile()