Lines Matching defs:t2
84 std::tuple<> t2 = std::tuple_cat(t1);
85 ((void)t2); // Prevent unused warning
108 constexpr std::tuple<> t2 = std::tuple_cat(t1);
109 ((void)t2); // Prevent unused warning
151 std::tuple<> t2;
152 std::tuple<> t3 = std::tuple_cat(t1, t2);
157 std::tuple<int> t2(2);
158 std::tuple<int> t3 = std::tuple_cat(t1, t2);
163 std::tuple<int> t2(2);
164 std::tuple<int> t3 = std::tuple_cat(t2, t1);
169 std::tuple<int> t2(2);
170 std::tuple<int*, int> t3 = std::tuple_cat(t1, t2);
176 std::tuple<int> t2(2);
177 std::tuple<int, int*> t3 = std::tuple_cat(t2, t1);
183 std::tuple<int, double> t2(2, 3.5);
184 std::tuple<int*, int, double> t3 = std::tuple_cat(t1, t2);
191 std::tuple<int, double> t2(2, 3.5);
192 std::tuple<int, double, int*> t3 = std::tuple_cat(t2, t1);
199 std::tuple<int, double> t2(2, 3.5);
201 std::tuple_cat(std::move(t1), t2);
209 std::tuple<int, double> t2(2, 3.5);
211 std::tuple_cat(t2, std::move(t1));
219 std::tuple<int*, MoveOnly> t2(nullptr, 4);
221 std::tuple_cat(std::move(t1), std::move(t2));
230 std::tuple<int*, MoveOnly> t2(nullptr, 4);
234 std::move(t2));
242 std::tuple<int*, MoveOnly> t2(nullptr, 4);
246 std::move(t2));
254 std::tuple<int*, MoveOnly> t2(nullptr, 4);
257 std::move(t2),
266 std::tuple<int*, MoveOnly> t2(nullptr, 4);
269 std::move(t2),
285 auto t2 = std::tuple_cat(
289 assert(t2 == std::make_tuple(std::make_tuple(1), std::make_tuple(2)));
295 std::tuple<int, const int, int&, const int&> t2(42, 101, x, x);
296 const auto& ct2 = t2;
298 auto r = std::tuple_cat(std::move(t), std::move(ct), t2, ct2);
310 std::tuple<NS::Namespaced, NS::Namespaced> t2 =
313 assert(std::get<0>(t2).i == 1);