Lines Matching refs:MakeMatcher
55 MakeMatcher<V>([](Default, V const&) { return 1; }); in TEST()
63 constexpr auto matcher = MakeMatcher<V>( in TEST()
74 MakeMatcher<V>([](X* x) { return 10 + x->x; }, // in TEST()
88 constexpr auto matcher = MakeMatcher<V>( in TEST()
97 constexpr auto matcher = MakeMatcher<V>([](X* x) { return 10 + x->x; }, in TEST()
139 constexpr auto matcher = MakeMatcher<VMoveOnly>( in TEST()
154 constexpr auto matcher = MakeMatcher<VMoveOnly>( in TEST()
175 MakeMatcher<O>([](std::unique_ptr<X> const& x) { return x->x; }, in TEST()
187 constexpr auto matcher = MakeMatcher<O>( in TEST()
206 MakeMatcher<O>([](std::unique_ptr<X> x) { return x->x; }, in TEST()
221 MakeMatcher<R>([](std::unique_ptr<X> const& x) { return x->x; }, in TEST()
233 constexpr auto matcher = MakeMatcher<R>( in TEST()
251 constexpr auto matcher = MakeMatcher<R>( in TEST()