Lines Matching defs:With

46 //     .With(...) ?
49 // where With() is optional and WillByDefault() must appear exactly
53 // .With(...) ?
4627 // .With(multi-argument-matcher)
4630 // where the .With() clause is optional.
4636 // .With(multi-argument-matchers)
8623 // EXPECT_CALL(foo, Bar(_, _)).With(AllArgs(Eq()));
8627 // EXPECT_CALL(foo, Bar(_, _)).With(Eq());
8867 // Implements the .With() clause.
8868 OnCallSpec& With(const Matcher<const ArgumentTuple&>& m) {
8871 ".With() cannot appear "
8909 // .With(multi-argument-matcher)
9278 // If this mock method has an extra matcher (i.e. .With(matcher)),
9470 // Implements the .With() clause.
9471 TypedExpectation& With(const Matcher<const ArgumentTuple&>& m) {
9474 ".With() cannot appear "
9478 ".With() must be the first "
9616 // Returns the matcher specified by the .With() clause.
9624 // If this mock method has an extra matcher (i.e. .With(matcher)),
10379 MockSpec<F>& With() {
10399 MockSpec<F>& With(const Matcher<A1>& m1) {
10420 MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2) {
10441 MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2,
10463 MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2,
10486 MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2,
10510 MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2,
10535 MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2,
10560 MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2,
10585 MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2,
10612 MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2,
10678 return GMOCK_MOCKER_(0, constness, Method).With(); \
10697 return GMOCK_MOCKER_(1, constness, Method).With(gmock_a1); \
10718 return GMOCK_MOCKER_(2, constness, Method).With(gmock_a1, gmock_a2); \
10742 return GMOCK_MOCKER_(3, constness, Method).With(gmock_a1, gmock_a2, \
10769 return GMOCK_MOCKER_(4, constness, Method).With(gmock_a1, gmock_a2, \
10798 return GMOCK_MOCKER_(5, constness, Method).With(gmock_a1, gmock_a2, \
10829 return GMOCK_MOCKER_(6, constness, Method).With(gmock_a1, gmock_a2, \
10862 return GMOCK_MOCKER_(7, constness, Method).With(gmock_a1, gmock_a2, \
10897 return GMOCK_MOCKER_(8, constness, Method).With(gmock_a1, gmock_a2, \
10935 return GMOCK_MOCKER_(9, constness, Method).With(gmock_a1, gmock_a2, \
10977 return GMOCK_MOCKER_(10, constness, Method).With(gmock_a1, gmock_a2, \