Home
last modified time | relevance | path

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

/freebsd/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, 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/contrib/llvm-project/llvm/include/llvm/Testing/ADT/
H A DStringMapEntry.h56 ValueMatcher(
63 ValueMatcher.DescribeTo(OS);
70 ValueMatcher.DescribeNegationTo(OS);
84 if (!ValueMatcher.MatchAndExplain(Entry.getValue(), &ValueListener)) {
96 const testing::Matcher<const ValueT &> ValueMatcher;
/freebsd/contrib/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h3881 template <typename ValueMatcher>
3884 explicit OptionalMatcher(const ValueMatcher& value_matcher)
3897 explicit Impl(const ValueMatcher& value_matcher)
3930 const ValueMatcher value_matcher_;
5241 template <typename ValueMatcher>
5242 inline internal::OptionalMatcher<ValueMatcher> Optional(
5243 const ValueMatcher& value_matcher) {
5244 return internal::OptionalMatcher<ValueMatcher>(value_matcher);