Home
last modified time | relevance | path

Searched refs:needle_expr (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/googletest/googletest/include/gtest/
H A Dgtest.h1536 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,
/freebsd/contrib/googletest/googletest/src/
H A Dgtest.cc1838 const char* needle_expr, in IsSubstringImpl() argument
1848 << "Value of: " << needle_expr << "\n" in IsSubstringImpl()
1861 AssertionResult IsSubstring(const char* needle_expr, const char* haystack_expr, in IsSubstring() argument
1863 return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack); in IsSubstring()
1866 AssertionResult IsSubstring(const char* needle_expr, const char* haystack_expr, in IsSubstring() argument
1868 return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack); in IsSubstring()
1871 AssertionResult IsNotSubstring(const char* needle_expr, in IsNotSubstring() argument
1874 return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack); in IsNotSubstring()
1877 AssertionResult IsNotSubstring(const char* needle_expr, in IsNotSubstring() argument
1880 return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack); in IsNotSubstring()
[all …]