Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h1020 class StartsWithMatcher {
1022 explicit StartsWithMatcher(const StringType& prefix) : prefix_(prefix) {}
4514 PolymorphicMatcher<internal::StartsWithMatcher<std::string>> StartsWith(
4517 internal::StartsWithMatcher<std::string>(std::string(prefix)));
4568 inline PolymorphicMatcher<internal::StartsWithMatcher<std::wstring>> StartsWith(
4571 internal::StartsWithMatcher<std::wstring>(prefix));
/freebsd-14.2/contrib/bsnmp/tests/
H A Dcatch.hpp3516 struct StartsWithMatcher : StringMatcherBase { struct
3517 StartsWithMatcher( CasedString const& comparator );
3543 …StdString::StartsWithMatcher StartsWith( std::string const& str, CaseSensitive::Choice caseSensiti…
11602StartsWithMatcher::StartsWithMatcher( CasedString const& comparator ) : StringMatcherBase( "starts… in StartsWithMatcher() function in Catch::Matchers::StdString::StartsWithMatcher
11604 bool StartsWithMatcher::match( std::string const& source ) const { in match()
11640 …StdString::StartsWithMatcher StartsWith( std::string const& str, CaseSensitive::Choice caseSensiti… in StartsWith()
11641 return StdString::StartsWithMatcher( StdString::CasedString( str, caseSensitivity) ); in StartsWith()