Home
last modified time | relevance | path

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

/freebsd/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-string.h130 static bool CaseInsensitiveCStringEquals(const char* lhs, const char* rhs);
/freebsd/contrib/googletest/googletest/src/
H A Dgtest.cc1770 if (String::CaseInsensitiveCStringEquals(lhs, rhs)) { in CmpHelperSTRCASEEQ()
1795 if (!String::CaseInsensitiveCStringEquals(s1, s2)) { in CmpHelperSTRCASENE()
2157 bool String::CaseInsensitiveCStringEquals(const char* lhs, const char* rhs) { in CaseInsensitiveCStringEquals() function in testing::internal::String
2204 CaseInsensitiveCStringEquals(str.c_str() + str_len - suffix_len, in EndsWithCaseInsensitive()
3264 if (String::CaseInsensitiveCStringEquals(gtest_color, "auto")) { in ShouldUseColor()
3287 return String::CaseInsensitiveCStringEquals(gtest_color, "yes") || in ShouldUseColor()
3288 String::CaseInsensitiveCStringEquals(gtest_color, "true") || in ShouldUseColor()
3289 String::CaseInsensitiveCStringEquals(gtest_color, "t") || in ShouldUseColor()
/freebsd/contrib/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h861 inline bool CaseInsensitiveCStringEquals(const char* lhs, const char* rhs) {
862 return String::CaseInsensitiveCStringEquals(lhs, rhs);
865 inline bool CaseInsensitiveCStringEquals(const wchar_t* lhs,
875 if (!CaseInsensitiveCStringEquals(s1.c_str(), s2.c_str())) {