Searched refs:CaseInsensitiveCStringEquals (Results 1 – 3 of 3) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/internal/ |
H A D | gtest-string.h | 125 static bool CaseInsensitiveCStringEquals(const char* lhs,
|
/netbsd-src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/src/ |
H A D | gtest.cc | 1514 if (String::CaseInsensitiveCStringEquals(lhs, rhs)) { in CmpHelperSTRCASEEQ() 1544 if (!String::CaseInsensitiveCStringEquals(s1, s2)) { in CmpHelperSTRCASENE() 1913 bool String::CaseInsensitiveCStringEquals(const char * lhs, const char * rhs) { in CaseInsensitiveCStringEquals() function in testing::internal::String 1960 CaseInsensitiveCStringEquals(str.c_str() + str_len - suffix_len, in EndsWithCaseInsensitive() 2993 if (String::CaseInsensitiveCStringEquals(gtest_color, "auto")) { in ShouldUseColor() 3017 return String::CaseInsensitiveCStringEquals(gtest_color, "yes") || in ShouldUseColor() 3018 String::CaseInsensitiveCStringEquals(gtest_color, "true") || in ShouldUseColor() 3019 String::CaseInsensitiveCStringEquals(gtest_color, "t") || in ShouldUseColor()
|
/netbsd-src/external/apache2/llvm/dist/llvm/utils/unittest/googlemock/include/gmock/ |
H A D | gmock-matchers.h | 630 inline bool CaseInsensitiveCStringEquals(const char* lhs, const char* rhs) { 631 return String::CaseInsensitiveCStringEquals(lhs, rhs); 634 inline bool CaseInsensitiveCStringEquals(const wchar_t* lhs, 645 if (!CaseInsensitiveCStringEquals(s1.c_str(), s2.c_str())) {
|