Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Testing/Support/
H A DSupportHelpers.h63 explicit ValueIsMatcher(InnerMatcher ValueMatcher) in ValueIsMatcher() argument
64 : ValueMatcher(ValueMatcher) {} in ValueIsMatcher()
69 new Impl<T>(::testing::SafeMatcherCast<T>(ValueMatcher)));
75 explicit Impl(const ::testing::Matcher<T> &ValueMatcher) in Impl() argument
76 : ValueMatcher(ValueMatcher) {} in Impl()
80 return Input && ValueMatcher.MatchAndExplain(Input.getValue(), L); in MatchAndExplain()
85 ValueMatcher.DescribeTo(OS); in DescribeTo()
89 ValueMatcher.DescribeTo(OS); in DescribeNegationTo()
93 testing::Matcher<T> ValueMatcher;
97 InnerMatcher ValueMatcher;
[all …]
/freebsd-13.1/contrib/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h4018 template <typename ValueMatcher>
4021 explicit OptionalMatcher(const ValueMatcher& value_matcher)
4034 explicit Impl(const ValueMatcher& value_matcher)
4068 const ValueMatcher value_matcher_;
5239 template <typename ValueMatcher>
5240 inline internal::OptionalMatcher<ValueMatcher> Optional(
5241 const ValueMatcher& value_matcher) {
5242 return internal::OptionalMatcher<ValueMatcher>(value_matcher);