Home | History | Annotate | Download | only in test

Lines Matching refs:ACTION_P

730 // Tests that ACTION_P can define a parameterized action.
731 ACTION_P(Plus, n) { return arg0 + n; }
738 // Tests that the body of ACTION_P can reference the argument types
740 ACTION_P(TypedPlus, n) {
764 ACTION_P(OverloadedAction, default_value) {
934 ACTION_P(DoFoo, p) {}
961 // Tests that an ACTION_P*() action can be explicitly instantiated
964 ACTION_P(Plus1, x) { return x; }
1169 // Tests that ACTION_TEMPLATE and ACTION/ACTION_P* can be overloaded
1174 ACTION_P(ReturnSum, x) { return x; }