Searched refs:CaseInsensitiveCStringEquals (Results 1 – 3 of 3) sorted by relevance
/llvm-project/third-party/unittest/googletest/include/gtest/internal/ |
H A D | gtest-string.h | 130 static bool CaseInsensitiveCStringEquals(const char* lhs, const char* rhs);
|
/llvm-project/third-party/unittest/googletest/src/ |
H A D | gtest.cc | 1744 if (String::CaseInsensitiveCStringEquals(lhs, rhs)) { in CmpHelperSTRCASEEQ() 1769 if (!String::CaseInsensitiveCStringEquals(s1, s2)) { in CmpHelperSTRCASENE() 2131 bool String::CaseInsensitiveCStringEquals(const char* lhs, const char* rhs) { in CaseInsensitiveCStringEquals() function in testing::internal::String 2178 CaseInsensitiveCStringEquals(str.c_str() + str_len - suffix_len, in EndsWithCaseInsensitive() 3242 if (String::CaseInsensitiveCStringEquals(gtest_color, "auto")) { in ShouldUseColor() 3264 return String::CaseInsensitiveCStringEquals(gtest_color, "yes") || in ShouldUseColor() 3265 String::CaseInsensitiveCStringEquals(gtest_color, "true") || in ShouldUseColor() 3266 String::CaseInsensitiveCStringEquals(gtest_color, "t") || in ShouldUseColor()
|
/llvm-project/third-party/unittest/googlemock/include/gmock/ |
H A D | gmock-matchers.h | 861 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())) {
|