Lines Matching defs:Tup
43 using Tup = std::tuple<>;
45 constexpr Tup t;
50 using Tup = std::tuple<int>;
52 constexpr Tup t(42);
57 using Tup = std::tuple<int, long>;
59 constexpr Tup t(42, 101);
64 using Tup = std::pair<int, long>;
66 constexpr Tup t(42, 101);
71 using Tup = std::tuple<int, long, int>;
73 constexpr Tup t(42, 101, -1);
78 using Tup = std::array<int, 3>;
80 constexpr Tup t = {42, 101, -1};
163 using Tup = std::tuple<int, int const&, unsigned&&>;
166 Tup t(-1, x, std::move(y));
167 Tup const& ct = t;
193 using Tup = std::tuple<int, const char*, long>;
194 Tup t;
204 using Tup = std::tuple<NothrowMoveable, int>;
205 Tup t;