Home | History | Annotate | Download | only in tuple.creation

Lines Matching refs:t2

31         std::tuple<> t2 = std::tuple_cat(t1);
65 std::tuple<> t2;
66 std::tuple<> t3 = std::tuple_cat(t1, t2);
70 std::tuple<int> t2(2);
71 std::tuple<int> t3 = std::tuple_cat(t1, t2);
76 std::tuple<int> t2(2);
77 std::tuple<int> t3 = std::tuple_cat(t2, t1);
82 std::tuple<int> t2(2);
83 std::tuple<int*, int> t3 = std::tuple_cat(t1, t2);
89 std::tuple<int> t2(2);
90 std::tuple<int, int*> t3 = std::tuple_cat(t2, t1);
96 std::tuple<int, double> t2(2, 3.5);
97 std::tuple<int*, int, double> t3 = std::tuple_cat(t1, t2);
104 std::tuple<int, double> t2(2, 3.5);
105 std::tuple<int, double, int*> t3 = std::tuple_cat(t2, t1);
112 std::tuple<int, double> t2(2, 3.5);
114 std::tuple_cat(std::move(t1), t2);
122 std::tuple<int, double> t2(2, 3.5);
124 std::tuple_cat(t2, std::move(t1));
132 std::tuple<int*, MoveOnly> t2(nullptr, 4);
134 std::tuple_cat(std::move(t1), std::move(t2));
143 std::tuple<int*, MoveOnly> t2(nullptr, 4);
147 std::move(t2));
155 std::tuple<int*, MoveOnly> t2(nullptr, 4);
159 std::move(t2));
167 std::tuple<int*, MoveOnly> t2(nullptr, 4);
170 std::move(t2),
179 std::tuple<int*, MoveOnly> t2(nullptr, 4);
182 std::move(t2),