Searched refs:EndsWithCaseInsensitive (Results 1 - 4 of 4) sorted by relevance

/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-string.h144 static bool EndsWithCaseInsensitive(
/gem5/ext/googletest/googletest/src/
H A Dgtest-filepath.cc126 if (String::EndsWithCaseInsensitive(pathname_, dot_extension)) {
H A Dgtest.cc1949 bool String::EndsWithCaseInsensitive( function in class:testing::internal::String
/gem5/ext/googletest/googletest/test/
H A Dgtest_unittest.cc1000 // Tests String::EndsWithCaseInsensitive().
1001 TEST(StringTest, EndsWithCaseInsensitive) {
1002 EXPECT_TRUE(String::EndsWithCaseInsensitive("foobar", "BAR"));
1003 EXPECT_TRUE(String::EndsWithCaseInsensitive("foobaR", "bar"));
1004 EXPECT_TRUE(String::EndsWithCaseInsensitive("foobar", ""));
1005 EXPECT_TRUE(String::EndsWithCaseInsensitive("", ""));
1007 EXPECT_FALSE(String::EndsWithCaseInsensitive("Foobar", "foo"));
1008 EXPECT_FALSE(String::EndsWithCaseInsensitive("foobar", "Foo"));
1009 EXPECT_FALSE(String::EndsWithCaseInsensitive("", "foo"));

Completed in 46 milliseconds