Lines Matching refs:MatchAndExplain
1112 virtual bool MatchAndExplain(const Foo& foo,
2931 You should let `MatchAndExplain()` print _any additional information_
3098 virtual bool MatchAndExplain(T x, MatchResultListener* listener) const = 0;
3126 virtual bool MatchAndExplain(int n, MatchResultListener* listener) const {
3148 information to the `listener` argument in `MatchAndExplain()`:
3153 virtual bool MatchAndExplain(int n,
3196 // that has three members MatchAndExplain(), DescribeTo(), and
3200 // MatchAndExplain() accepts a pointer of any type as its first argument.
3201 // In general, you can define MatchAndExplain() as an ordinary method or
3204 bool MatchAndExplain(T* p,
3232 `MatchAndExplain()`.