Lines Matching defs:action

265   // When action 'a' is constructed, it makes a copy of the temporary
284 // Tests using WithArgs and with an action that takes 1 argument.
291 // Tests using WithArgs with an action that takes 2 arguments.
299 // Tests using WithArgs with an action that takes 3 arguments.
306 // Tests using WithArgs with an action that takes 4 arguments.
314 // Tests using WithArgs with an action that takes 5 arguments.
324 // Tests using WithArgs with an action that takes 6 arguments.
332 // Tests using WithArgs with an action that takes 7 arguments.
341 // Tests using WithArgs with an action that takes 8 arguments.
350 // Tests using WithArgs with an action that takes 9 arguments.
359 // Tests using WithArgs with an action that takes 10 arguments.
368 // Tests using WithArgs with an action that is not Invoke().
412 // Tests using WithArgs with an action that returns void.
459 Action<int(int*, int*, char*, char*)> action = // NOLINT
465 EXPECT_EQ(3, action.Perform(make_tuple(&m, &n, &a, &b)));
476 Action<int(int*, int*, char*, char*, char*)> action = // NOLINT
483 EXPECT_EQ(3, action.Perform(make_tuple(&m, &n, &a, &b, &c)));
495 Action<int(int*, int*, char*, char*, char*, char*)> action = // NOLINT
503 EXPECT_EQ(3, action.Perform(make_tuple(&m, &n, &a, &b, &c, &d)));
517 char*)> action =
526 EXPECT_EQ(3, action.Perform(make_tuple(&m, &n, &a, &b, &c, &d, &e)));
541 char*, char*)> action =
551 EXPECT_EQ(3, action.Perform(make_tuple(&m, &n, &a, &b, &c, &d, &e, &f)));
568 char*, char*, char*)> action =
579 EXPECT_EQ(3, action.Perform(make_tuple(&m, &n, &a, &b, &c, &d, &e, &f, &g)));
603 // Tests that ACTION() can define an action that doesn't reference the
615 // Tests that ACTION() can define an action that returns void.
731 // Tests that ACTION_P can define a parameterized action.
752 // Tests that a parameterized action can be used in any mock function
864 // Tests that the action body can promote the parameter types.
885 // Defines a generic action that doesn't restrict the types of its
977 // Tests that an ACTION_P*() action can be explicitly instantiated