Lines Matching defs:ACTION_P
1124 // Tests that ACTION_P can define a parameterized action.
1125 ACTION_P(Plus, n) { return arg0 + n; }
1132 // Tests that the body of ACTION_P can reference the argument types
1134 ACTION_P(TypedPlus, n) {
1159 ACTION_P(OverloadedAction, default_value) {
1333 ACTION_P(DoFoo, p) {}
1373 // Tests that an ACTION_P*() action can be explicitly instantiated
1376 ACTION_P(Plus1, x) { return x; }
1514 // Tests that ACTION_TEMPLATE and ACTION/ACTION_P* can be overloaded
1519 ACTION_P(ReturnSum, x) { return x; }