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

1 2

  /external/google-breakpad/src/testing/gtest/include/gtest/internal/
gtest-filepath.h 139 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
142 FilePath RemoveExtension(const char* extension) const;
  /external/googletest/googletest/include/gtest/internal/
gtest-filepath.h 138 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
141 FilePath RemoveExtension(const char* extension) const;
  /external/libaom/libaom/third_party/googletest/src/googletest/include/gtest/internal/
gtest-filepath.h 135 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
138 FilePath RemoveExtension(const char* extension) const;
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
gtest-filepath.h 138 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
141 FilePath RemoveExtension(const char* extension) const;
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-filepath.h 139 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
142 FilePath RemoveExtension(const char* extension) const;
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-filepath.h 135 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
138 FilePath RemoveExtension(const char* extension) const;
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
gtest-filepath.h 139 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
142 FilePath RemoveExtension(const char* extension) const;
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-filepath.h 135 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
138 FilePath RemoveExtension(const char* extension) const;
  /external/googletest/googletest/test/
googletest-filepath-test.cc 595 TEST(FilePathTest, RemoveExtension) {
596 EXPECT_EQ("app", FilePath("app.cc").RemoveExtension("cc").string());
597 EXPECT_EQ("app", FilePath("app.exe").RemoveExtension("exe").string());
598 EXPECT_EQ("APP", FilePath("APP.EXE").RemoveExtension("exe").string());
602 EXPECT_EQ("app", FilePath("app").RemoveExtension("exe").string());
  /external/google-breakpad/src/testing/gtest/test/
gtest-filepath_test.cc 643 TEST(FilePathTest, RemoveExtension) {
644 EXPECT_STREQ("app", FilePath("app.exe").RemoveExtension("exe").c_str());
645 EXPECT_STREQ("APP", FilePath("APP.EXE").RemoveExtension("exe").c_str());
649 EXPECT_STREQ("app", FilePath("app").RemoveExtension("exe").c_str());
  /external/libchrome/base/files/
file_path.h 257 // new_path = path.RemoveExtension().value().append(path.Extension());
275 FilePath RemoveExtension() const WARN_UNUSED_RESULT;
277 // Removes the path's file extension, as in RemoveExtension(), but
file_path_unittest.cc 717 FilePath base = jpg.BaseName().RemoveExtension();
721 EXPECT_EQ(path_no_ext.value(), jpg.RemoveExtension().value());
723 EXPECT_EQ(path_no_ext.value(), path_no_ext.RemoveExtension().value());
    [all...]
file_path.cc 385 FilePath FilePath::RemoveExtension() const {
415 StringType ret = RemoveExtension().value();
453 FilePath no_ext = RemoveExtension();
    [all...]
  /external/google-breakpad/src/testing/gtest/src/
gtest-filepath.cc 115 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
118 FilePath FilePath::RemoveExtension(const char* extension) const {
gtest.cc 375 result.Set(FilePath(g_executable_path).RemoveExtension("exe"));
    [all...]
  /external/googletest/googletest/src/
gtest-filepath.cc 117 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
120 FilePath FilePath::RemoveExtension(const char* extension) const {
gtest.cc 433 result.Set(FilePath(GetArgvs()[0]).RemoveExtension("exe"));
    [all...]
  /external/libaom/libaom/third_party/googletest/src/googletest/src/
gtest-filepath.cc 121 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
124 FilePath FilePath::RemoveExtension(const char* extension) const {
  /external/libvpx/libvpx/third_party/googletest/src/src/
gtest-filepath.cc 119 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
122 FilePath FilePath::RemoveExtension(const char* extension) const {
  /external/llvm/utils/unittest/googletest/src/
gtest-filepath.cc 113 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
116 FilePath FilePath::RemoveExtension(const char* extension) const {
  /external/mesa3d/src/gtest/src/
gtest-filepath.cc 121 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
124 FilePath FilePath::RemoveExtension(const char* extension) const {
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/
gtest-filepath.cc 115 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
118 FilePath FilePath::RemoveExtension(const char* extension) const {
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googletest/src/
gtest-filepath.cc 121 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
124 FilePath FilePath::RemoveExtension(const char* extension) const {
  /external/v4l2_codec2/tests/
C2VDAComponent_test.cpp 87 filepath = filepath.RemoveExtension();
    [all...]
  /external/epid-sdk/ext/gtest/
gtest-all.cc     [all...]

Completed in 1414 milliseconds

1 2