Lines Matching refs:tuple
5 #include "base/tuple.h"
35 std::tuple<> t0 = std::make_tuple();
37 std::tuple<int> t1(1);
38 std::tuple<int, const char*> t2 =
41 std::tuple<int, int, int> t3(1, 2, 3);
42 std::tuple<int, int, int, int*> t4(1, 2, 3, &std::get<0>(t1));
43 std::tuple<int, int, int, int, int*> t5(1, 2, 3, 4, &std::get<0>(t4));
44 std::tuple<int, int, int, int, int, int*> t6(1, 2, 3, 4, 5, &std::get<0>(t4));
96 // Creating the tuple should copy the class to store internally in the tuple.
97 std::tuple<CopyLogger, CopyLogger*, bool*> tuple(logger, &logger, &res);
98 std::get<1>(tuple) = &std::get<0>(tuple);
104 DispatchToFunction(&SomeLoggerMethRef, tuple);
111 DispatchToFunction(&SomeLoggerMethCopy, tuple);
120 std::tuple<int, int&, int&&> t(3, i, std::move(j));