Home | History | Annotate | Download | only in test

Lines Matching refs:tuple

213 using ::std::tr1::tuple;
973 tuple<> t0;
976 tuple<int> t1(5);
979 tuple<char, bool> t2('a', true);
982 tuple<bool, int, int> t3(false, 2, 3);
985 tuple<bool, int, int, int> t4(false, 2, 3, 4);
988 tuple<bool, int, int, int, bool> t5(false, 2, 3, 4, true);
991 tuple<bool, int, int, int, bool, int> t6(false, 2, 3, 4, true, 6);
994 tuple<bool, int, int, int, bool, int, int> t7(false, 2, 3, 4, true, 6, 7);
997 tuple<bool, int, int, int, bool, int, int, bool> t8(
1001 tuple<bool, int, int, int, bool, int, int, bool, int> t9(
1006 // VC++ 2010's implementation of tuple of C++0x is deficient, requiring
1008 tuple<bool, char, short, testing::internal::Int32, // NOLINT
1019 tuple<tuple<int, bool>, char> nested(make_tuple(5, true), 'a');
1302 tuple<const int&, const char*>(n, "a"));