Searched refs:CaseInsensitiveCStringEquals (Results 1 – 3 of 3) sorted by relevance
| /freebsd/contrib/googletest/googletest/include/gtest/internal/ |
| H A D | gtest-string.h | 130 static bool CaseInsensitiveCStringEquals(const char* lhs, const char* rhs);
|
| /freebsd/contrib/googletest/googletest/src/ |
| H A D | gtest.cc | 1797 if (String::CaseInsensitiveCStringEquals(lhs, rhs)) { in CmpHelperSTRCASEEQ() 1822 if (!String::CaseInsensitiveCStringEquals(s1, s2)) { in CmpHelperSTRCASENE() 2184 bool String::CaseInsensitiveCStringEquals(const char* lhs, const char* rhs) { in CaseInsensitiveCStringEquals() function in testing::internal::String 2231 CaseInsensitiveCStringEquals(str.c_str() + str_len - suffix_len, in EndsWithCaseInsensitive() 3291 if (String::CaseInsensitiveCStringEquals(gtest_color, "auto")) { in ShouldUseColor() 3314 return String::CaseInsensitiveCStringEquals(gtest_color, "yes") || in ShouldUseColor() 3315 String::CaseInsensitiveCStringEquals(gtest_color, "true") || in ShouldUseColor() 3316 String::CaseInsensitiveCStringEquals(gtest_color, "t") || in ShouldUseColor()
|
| /freebsd/contrib/googletest/googlemock/include/gmock/ |
| H A D | gmock-matchers.h | 873 inline bool CaseInsensitiveCStringEquals(const char* lhs, const char* rhs) { 874 return String::CaseInsensitiveCStringEquals(lhs, rhs); 877 inline bool CaseInsensitiveCStringEquals(const wchar_t* lhs, 887 if (!CaseInsensitiveCStringEquals(s1.c_str(), s2.c_str())) {
|