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

12

/external/gtest/include/gtest/internal/
H A Dgtest-string.h144 static bool EndsWithCaseInsensitive(
/external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
H A Dgtest-string.h144 static bool EndsWithCaseInsensitive(
/external/google-breakpad/src/testing/gtest/include/gtest/internal/
H A Dgtest-string.h266 bool EndsWithCaseInsensitive(const char* suffix) const;
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-string.h266 bool EndsWithCaseInsensitive(const char* suffix) const;
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-string.h266 bool EndsWithCaseInsensitive(const char* suffix) const;
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-string.h266 bool EndsWithCaseInsensitive(const char* suffix) const;
/external/google-breakpad/src/testing/gtest/src/
H A Dgtest-filepath.cc120 if (pathname_.EndsWithCaseInsensitive(dot_extension.c_str())) {
H A Dgtest.cc1680 bool String::EndsWithCaseInsensitive(const char* suffix) const { function in class:testing::internal::String
/external/gtest/src/
H A Dgtest-filepath.cc121 if (String::EndsWithCaseInsensitive(pathname_, dot_extension)) {
H A Dgtest.cc1626 bool String::EndsWithCaseInsensitive( function in class:testing::internal::String
/external/llvm/utils/unittest/googletest/src/
H A Dgtest-filepath.cc118 if (pathname_.EndsWithCaseInsensitive(dot_extension.c_str())) {
H A Dgtest.cc1679 bool String::EndsWithCaseInsensitive(const char* suffix) const { function in class:testing::internal::String
/external/mesa3d/src/gtest/src/
H A Dgtest-filepath.cc120 if (pathname_.EndsWithCaseInsensitive(dot_extension.c_str())) {
H A Dgtest.cc1679 bool String::EndsWithCaseInsensitive(const char* suffix) const { function in class:testing::internal::String
/external/protobuf/gtest/src/
H A Dgtest-filepath.cc120 if (pathname_.EndsWithCaseInsensitive(dot_extension.c_str())) {
H A Dgtest.cc1702 bool String::EndsWithCaseInsensitive(const char* suffix) const { function in class:testing::internal::String
/external/vulkan-validation-layers/tests/gtest-1.7.0/src/
H A Dgtest-filepath.cc121 if (String::EndsWithCaseInsensitive(pathname_, dot_extension)) {
/external/protobuf/gtest/test/
H A Dgtest_unittest.cc1053 // Tests String::EndsWithCaseInsensitive().
1054 TEST(StringTest, EndsWithCaseInsensitive) {
1055 EXPECT_TRUE(String("foobar").EndsWithCaseInsensitive("BAR"));
1056 EXPECT_TRUE(String("foobaR").EndsWithCaseInsensitive("bar"));
1057 EXPECT_TRUE(String("foobar").EndsWithCaseInsensitive(""));
1058 EXPECT_TRUE(String("").EndsWithCaseInsensitive(""));
1060 EXPECT_FALSE(String("Foobar").EndsWithCaseInsensitive("foo"));
1061 EXPECT_FALSE(String("foobar").EndsWithCaseInsensitive("Foo"));
1062 EXPECT_FALSE(String("").EndsWithCaseInsensitive("foo"));
/external/google-breakpad/src/testing/gtest/test/
H A Dgtest_unittest.cc1187 // Tests String::EndsWithCaseInsensitive().
1188 TEST(StringTest, EndsWithCaseInsensitive) {
1189 EXPECT_TRUE(String("foobar").EndsWithCaseInsensitive("BAR"));
1190 EXPECT_TRUE(String("foobaR").EndsWithCaseInsensitive("bar"));
1191 EXPECT_TRUE(String("foobar").EndsWithCaseInsensitive(""));
1192 EXPECT_TRUE(String("").EndsWithCaseInsensitive(""));
1194 EXPECT_FALSE(String("Foobar").EndsWithCaseInsensitive("foo"));
1195 EXPECT_FALSE(String("foobar").EndsWithCaseInsensitive("Foo"));
1196 EXPECT_FALSE(String("").EndsWithCaseInsensitive("foo"));
/external/gtest/test/
H A Dgtest_unittest.cc1007 // Tests String::EndsWithCaseInsensitive().
1008 TEST(StringTest, EndsWithCaseInsensitive) {
1009 EXPECT_TRUE(String::EndsWithCaseInsensitive("foobar", "BAR"));
1010 EXPECT_TRUE(String::EndsWithCaseInsensitive("foobaR", "bar"));
1011 EXPECT_TRUE(String::EndsWithCaseInsensitive("foobar", ""));
1012 EXPECT_TRUE(String::EndsWithCaseInsensitive("", ""));
1014 EXPECT_FALSE(String::EndsWithCaseInsensitive("Foobar", "foo"));
1015 EXPECT_FALSE(String::EndsWithCaseInsensitive("foobar", "Foo"));
1016 EXPECT_FALSE(String::EndsWithCaseInsensitive("", "foo"));
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/
H A Dgtest_unittest.cc1007 // Tests String::EndsWithCaseInsensitive().
1008 TEST(StringTest, EndsWithCaseInsensitive) {
1009 EXPECT_TRUE(String::EndsWithCaseInsensitive("foobar", "BAR"));
1010 EXPECT_TRUE(String::EndsWithCaseInsensitive("foobaR", "bar"));
1011 EXPECT_TRUE(String::EndsWithCaseInsensitive("foobar", ""));
1012 EXPECT_TRUE(String::EndsWithCaseInsensitive("", ""));
1014 EXPECT_FALSE(String::EndsWithCaseInsensitive("Foobar", "foo"));
1015 EXPECT_FALSE(String::EndsWithCaseInsensitive("foobar", "Foo"));
1016 EXPECT_FALSE(String::EndsWithCaseInsensitive("", "foo"));
/external/libvpx/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc3110 bool String::EndsWithCaseInsensitive( function in class:testing::internal::String
7953 if (String::EndsWithCaseInsensitive(pathname_, dot_extension)) {
/external/opencv3/modules/ts/src/
H A Dts_gtest.cpp3126 bool String::EndsWithCaseInsensitive( function in class:testing::internal::String
7996 if (String::EndsWithCaseInsensitive(pathname_, dot_extension)) {
/external/protobuf/gtest/fused-src/gtest/
H A Dgtest-all.cc3042 bool String::EndsWithCaseInsensitive(const char* suffix) const { function in class:testing::internal::String
7328 if (pathname_.EndsWithCaseInsensitive(dot_extension.c_str())) {
/external/vulkan-validation-layers/tests/gtest-1.7.0/fused-src/gtest/
H A Dgtest-all.cc3110 bool String::EndsWithCaseInsensitive( function in class:testing::internal::String
7955 if (String::EndsWithCaseInsensitive(pathname_, dot_extension)) {

Completed in 412 milliseconds

12