Lines Matching refs:substring
962 // Implements the polymorphic HasSubstr(substring) matcher, which
968 explicit HasSubstrMatcher(const StringType& substring)
969 : substring_(substring) {}
1003 *os << "has substring ";
1008 *os << "has no substring ";
1016 // Implements the polymorphic StartsWith(substring) matcher, which
1070 // Implements the polymorphic EndsWith(substring) matcher, which
4505 // that contains the given substring.
4508 const internal::StringLike<T>& substring) {
4510 internal::HasSubstrMatcher<std::string>(std::string(substring)));
4561 // that contains the given substring.
4563 const std::wstring& substring) {
4565 internal::HasSubstrMatcher<std::wstring>(substring));