Home | History | Annotate | Download | only in test

Lines Matching refs:Plus

47 using ::std::plus;
731 ACTION_P(Plus, n) { return arg0 + n; }
734 Action<int(int m, bool t)> a1 = Plus(9);
754 Action<std::string(const std::string& s)> a1 = Plus("tail");
790 ACTION_P3(Plus, m, n, k) { return arg0 + m + n + k; }
793 Action<double(int m, bool t)> a1 = Plus(100, 20, 3.4);
796 Action<std::string(const std::string& s)> a2 = Plus("tail", "-", ">");
801 ACTION_P4(Plus, p0, p1, p2, p3) { return arg0 + p0 + p1 + p2 + p3; }
804 Action<int(int)> a1 = Plus(1, 2, 3, 4);
808 ACTION_P5(Plus, p0, p1, p2, p3, p4) { return arg0 + p0 + p1 + p2 + p3 + p4; }
811 Action<int(int)> a1 = Plus(1, 2, 3, 4, 5);
815 ACTION_P6(Plus, p0, p1, p2, p3, p4, p5) {
820 Action<int(int)> a1 = Plus(1, 2, 3, 4, 5, 6);
824 ACTION_P7(Plus, p0, p1, p2, p3, p4, p5, p6) {
829 Action<int(int)> a1 = Plus(1, 2, 3, 4, 5, 6, 7);
833 ACTION_P8(Plus, p0, p1, p2, p3, p4, p5, p6, p7) {
838 Action<int(int)> a1 = Plus(1, 2, 3, 4, 5, 6, 7, 8);
842 ACTION_P9(Plus, p0, p1, p2, p3, p4, p5, p6, p7, p8) {
847 Action<int(int)> a1 = Plus(1, 2, 3, 4, 5, 6, 7, 8, 9);
851 ACTION_P10(Plus, p0, p1, p2, p3, p4, p5, p6, p7, p8, last_param) {
858 Action<int(int)> a1 = Plus(1, 2, 3, 4, 5, 6, 7, 8, 9, 10);
947 PlusActionP3<int, int, char> a3 = Plus(1, 2, '3');
948 PlusActionP4<int, int, int, char> a4 = Plus(1, 2, 3, '4');
949 PlusActionP5<int, int, int, int, char> a5 = Plus(1, 2, 3, 4, '5');
950 PlusActionP6<int, int, int, int, int, char> a6 = Plus(1, 2, 3, 4, 5, '6');
952 Plus(1, 2, 3, 4, 5, 6, '7');
954 Plus(1, 2, 3, 4, 5, 6, 7, '8');
956 Plus(1, 2, 3, 4, 5, 6, 7, 8, '9');
958 Plus(1, 2, 3, 4, 5, 6, 7, 8, 9, '0');