Lines Matching refs:MatchAndExplain
93 bool MatchAndExplain(int x,
110 // Tests implementing a monomorphic matcher using MatchAndExplain().
114 bool MatchAndExplain(int x, MatchResultListener* listener) const override {
200 // Tests Matcher<T>::MatchAndExplain().
201 TEST_P(MatcherTestP, MatchAndExplain) {
204 EXPECT_TRUE(m.MatchAndExplain(42, &listener1));
208 EXPECT_FALSE(m.MatchAndExplain(-9, &listener2));
302 bool MatchAndExplain(const T& x, MatchResultListener* /* listener */) const {
336 // Tests implementing a polymorphic matcher using MatchAndExplain().
345 bool MatchAndExplain(const T& x, MatchResultListener* listener) const {
2274 bool MatchAndExplain(const T& n, MatchResultListener* listener) const {