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

Lines Matching refs:t0

31         T t0;
32 T t(std::allocator_arg, A1<int>(), std::move(t0));
36 T t0(MoveOnly(0));
37 T t(std::allocator_arg, A1<int>(), std::move(t0));
42 T t0(1);
44 T t(std::allocator_arg, A1<int>(5), std::move(t0));
50 T t0(1);
52 T t(std::allocator_arg, A1<int>(5), std::move(t0));
58 T t0(0 ,1);
60 T t(std::allocator_arg, A1<int>(5), std::move(t0));
67 T t0(1, 2, 3);
70 T t(std::allocator_arg, A1<int>(5), std::move(t0));