Searched refs:needle_expr (Results 1 – 2 of 2) sorted by relevance
| /src/contrib/googletest/googletest/include/gtest/ |
| H A D | gtest.h | 1536 GTEST_API_ AssertionResult IsSubstring(const char* needle_expr, 1540 GTEST_API_ AssertionResult IsSubstring(const char* needle_expr, 1544 GTEST_API_ AssertionResult IsNotSubstring(const char* needle_expr, 1548 GTEST_API_ AssertionResult IsNotSubstring(const char* needle_expr, 1552 GTEST_API_ AssertionResult IsSubstring(const char* needle_expr, 1556 GTEST_API_ AssertionResult IsNotSubstring(const char* needle_expr, 1562 GTEST_API_ AssertionResult IsSubstring(const char* needle_expr, 1566 GTEST_API_ AssertionResult IsNotSubstring(const char* needle_expr,
|
| /src/contrib/googletest/googletest/src/ |
| H A D | gtest.cc | 1865 const char* needle_expr, in IsSubstringImpl() argument 1875 << "Value of: " << needle_expr << "\n" in IsSubstringImpl() 1888 AssertionResult IsSubstring(const char* needle_expr, const char* haystack_expr, in IsSubstring() argument 1890 return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack); in IsSubstring() 1893 AssertionResult IsSubstring(const char* needle_expr, const char* haystack_expr, in IsSubstring() argument 1895 return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack); in IsSubstring() 1898 AssertionResult IsNotSubstring(const char* needle_expr, in IsNotSubstring() argument 1901 return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack); in IsNotSubstring() 1904 AssertionResult IsNotSubstring(const char* needle_expr, in IsNotSubstring() argument 1907 return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack); in IsNotSubstring() [all …]
|