Lines Matching full:matchers
39 // ON_CALL(mock_object, Method(argument-matchers))
48 // EXPECT_CALL(mock_object, Method(argument-matchers))
49 // .With(multi-argument-matchers)
75 #include "gmock/gmock-matchers.h"
294 const ArgumentMatcherTuple& matchers)
296 matchers_(matchers),
329 // Returns true iff the given arguments match the matchers.
345 // ON_CALL(mock_object, Method(matchers))
353 // matchers => matchers_
1049 // Returns the matchers for the arguments as specified inside the
1051 const ArgumentMatcherTuple& matchers() const {
1284 void SetMatchers(const ArgumentMatcherTuple& matchers) {
1285 matchers_ = matchers;
1290 // The argument matchers specified in the spec.