Lines Matching defs:Plus

1160 ACTION_P(Plus, n) { return arg0 + n; }
1163 Action<int(int m, bool t)> a1 = Plus(9);
1183 Action<std::string(const std::string& s)> a1 = Plus("tail");
1220 ACTION_P3(Plus, m, n, k) { return arg0 + m + n + k; }
1223 Action<double(int m, bool t)> a1 = Plus(100, 20, 3.4);
1226 Action<std::string(const std::string& s)> a2 = Plus("tail", "-", ">");
1232 ACTION_P4(Plus, p0, p1, p2, p3) { return arg0 + p0 + p1 + p2 + p3; }
1235 Action<int(int)> a1 = Plus(1, 2, 3, 4);
1239 ACTION_P5(Plus, p0, p1, p2, p3, p4) { return arg0 + p0 + p1 + p2 + p3 + p4; }
1242 Action<int(int)> a1 = Plus(1, 2, 3, 4, 5);
1246 ACTION_P6(Plus, p0, p1, p2, p3, p4, p5) {
1251 Action<int(int)> a1 = Plus(1, 2, 3, 4, 5, 6);
1255 ACTION_P7(Plus, p0, p1, p2, p3, p4, p5, p6) {
1260 Action<int(int)> a1 = Plus(1, 2, 3, 4, 5, 6, 7);
1264 ACTION_P8(Plus, p0, p1, p2, p3, p4, p5, p6, p7) {
1269 Action<int(int)> a1 = Plus(1, 2, 3, 4, 5, 6, 7, 8);
1274 ACTION_P9(Plus, p0, p1, p2, p3, p4, p5, p6, p7, p8) {
1279 Action<int(int)> a1 = Plus(1, 2, 3, 4, 5, 6, 7, 8, 9);
1284 ACTION_P10(Plus, p0, p1, p2, p3, p4, p5, p6, p7, p8, last_param) {
1291 Action<int(int)> a1 = Plus(1, 2, 3, 4, 5, 6, 7, 8, 9, 10);
1381 PlusActionP3<int, int, char> a3 = Plus(1, 2, '3');
1382 PlusActionP4<int, int, int, char> a4 = Plus(1, 2, 3, '4');
1383 PlusActionP5<int, int, int, int, char> a5 = Plus(1, 2, 3, 4, '5');
1384 PlusActionP6<int, int, int, int, int, char> a6 = Plus(1, 2, 3, 4, 5, '6');
1386 Plus(1, 2, 3, 4, 5, 6, '7');
1388 Plus(1, 2, 3, 4, 5, 6, 7, '8');
1390 Plus(1, 2, 3, 4, 5, 6, 7, 8, '9');
1392 Plus(1, 2, 3, 4, 5, 6, 7, 8, 9, '0');