Lines Matching refs:MatchAndExplain
1115 virtual bool MatchAndExplain(const Foo& foo,
2447 You should let `MatchAndExplain()` print _any additional information_
2614 virtual bool MatchAndExplain(T x, MatchResultListener* listener) const = 0;
2642 virtual bool MatchAndExplain(int n, MatchResultListener* listener) const {
2664 information to the `listener` argument in `MatchAndExplain()`:
2669 virtual bool MatchAndExplain(int n,
2712 // that has three members MatchAndExplain(), DescribeTo(), and
2716 // MatchAndExplain() accepts a pointer of any type as its first argument.
2717 // In general, you can define MatchAndExplain() as an ordinary method or
2720 bool MatchAndExplain(T* p,
2748 `MatchAndExplain()`.