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

  /external/chromium/sdch/open-vcdiff/src/gtest/internal/
gtest-string.h 207 bool EndsWithCaseInsensitive(const char* suffix) const;
  /external/gtest/include/gtest/internal/
gtest-string.h 274 bool EndsWithCaseInsensitive(const char* suffix) const;
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest-filepath.cc 63 if (pathname_.EndsWithCaseInsensitive(dot_extension.c_str())) {
gtest.cc     [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-string.h 266 bool EndsWithCaseInsensitive(const char* suffix) const;
  /external/gtest/src/
gtest-filepath.cc 109 if (pathname_.EndsWithCaseInsensitive(dot_extension.c_str())) {
gtest.cc     [all...]
  /external/protobuf/gtest/src/
gtest-filepath.cc 105 if (pathname_.EndsWithCaseInsensitive(dot_extension.c_str())) {
gtest.cc     [all...]
  /external/gtest/test/
gtest_unittest.cc 678 // Tests String::EndsWithCaseInsensitive().
679 TEST(StringTest, EndsWithCaseInsensitive) {
680 EXPECT_TRUE(String("foobar").EndsWithCaseInsensitive("BAR"));
681 EXPECT_TRUE(String("foobaR").EndsWithCaseInsensitive("bar"));
682 EXPECT_TRUE(String("foobar").EndsWithCaseInsensitive(""));
683 EXPECT_TRUE(String("").EndsWithCaseInsensitive(""));
685 EXPECT_FALSE(String("Foobar").EndsWithCaseInsensitive("foo"));
686 EXPECT_FALSE(String("foobar").EndsWithCaseInsensitive("Foo"));
687 EXPECT_FALSE(String("").EndsWithCaseInsensitive("foo"));
    [all...]
  /external/protobuf/gtest/test/
gtest_unittest.cc     [all...]

Completed in 170 milliseconds