Lines Matching refs:MatchAndExplain
1113 virtual bool MatchAndExplain(const Foo& foo,
2688 You should let `MatchAndExplain()` print _any additional information_
2855 virtual bool MatchAndExplain(T x, MatchResultListener* listener) const = 0;
2883 virtual bool MatchAndExplain(int n, MatchResultListener* listener) const {
2905 information to the `listener` argument in `MatchAndExplain()`:
2910 virtual bool MatchAndExplain(int n,
2953 // that has three members MatchAndExplain(), DescribeTo(), and
2957 // MatchAndExplain() accepts a pointer of any type as its first argument.
2958 // In general, you can define MatchAndExplain() as an ordinary method or
2961 bool MatchAndExplain(T* p,
2989 `MatchAndExplain()`.