HomeSort by relevance Sort by last modified time
    Searched refs:RemoveExtension (Results 1 - 4 of 4) sorted by null

  /external/gtest/include/gtest/internal/
gtest-filepath.h 139 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
142 FilePath RemoveExtension(const char* extension) const;
  /external/gtest/test/
gtest-filepath_test.cc 583 TEST(FilePathTest, RemoveExtension) {
584 EXPECT_STREQ("app", FilePath("app.exe").RemoveExtension("exe").c_str());
585 EXPECT_STREQ("APP", FilePath("APP.EXE").RemoveExtension("exe").c_str());
589 EXPECT_STREQ("app", FilePath("app").RemoveExtension("exe").c_str());
  /external/gtest/src/
gtest-filepath.cc 104 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
107 FilePath FilePath::RemoveExtension(const char* extension) const {
gtest.cc 321 result.Set(FilePath(g_executable_path).RemoveExtension("exe"));
    [all...]

Completed in 998 milliseconds