Home
last modified time | relevance | path

Searched refs:CaseInsensitiveCStringEquals (Results 1 – 3 of 3) sorted by relevance

/freebsd-13.1/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-string.h124 static bool CaseInsensitiveCStringEquals(const char* lhs,
/freebsd-13.1/contrib/googletest/googletest/src/
H A Dgtest.cc1557 if (String::CaseInsensitiveCStringEquals(lhs, rhs)) { in CmpHelperSTRCASEEQ()
1587 if (!String::CaseInsensitiveCStringEquals(s1, s2)) { in CmpHelperSTRCASENE()
1955 bool String::CaseInsensitiveCStringEquals(const char * lhs, const char * rhs) { in CaseInsensitiveCStringEquals() function in testing::internal::String
2004 CaseInsensitiveCStringEquals(str.c_str() + str_len - suffix_len, in EndsWithCaseInsensitive()
3016 if (String::CaseInsensitiveCStringEquals(gtest_color, "auto")) { in ShouldUseColor()
3040 return String::CaseInsensitiveCStringEquals(gtest_color, "yes") || in ShouldUseColor()
3041 String::CaseInsensitiveCStringEquals(gtest_color, "true") || in ShouldUseColor()
3042 String::CaseInsensitiveCStringEquals(gtest_color, "t") || in ShouldUseColor()
/freebsd-13.1/contrib/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h1265 inline bool CaseInsensitiveCStringEquals(const char* lhs, const char* rhs) {
1266 return String::CaseInsensitiveCStringEquals(lhs, rhs);
1269 inline bool CaseInsensitiveCStringEquals(const wchar_t* lhs,
1280 if (!CaseInsensitiveCStringEquals(s1.c_str(), s2.c_str())) {