Home | History | Annotate | Download | only in test

Lines Matching full:tuple

69 using ::std::tr1::tuple;
97 ::std::string PrintValue(const tuple<T1, T2>& value) {
104 ::std::string PrintValue(const tuple<T1, T2, T3>& value) {
114 const tuple<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>& value) {
466 const ParamGenerator<tuple<const char*, int> > gen =
469 tuple<const char*, int> expected_values[] = {
477 const ParamGenerator<tuple<int, int, int> > gen = Combine(Values(0, 1),
480 tuple<int, int, int> expected_values[] = {
492 const ParamGenerator<tuple<int, int> > gen = Combine(Values(42),
495 tuple<int, int> expected_values[] = {make_tuple(42, 0), make_tuple(42, 1)};
503 const ParamGenerator<tuple<int, int> > gen = Combine(Values(0, 1),
506 tuple<int, int> expected_values[] = {make_tuple(0, 42), make_tuple(1, 42)};
513 const ParamGenerator<tuple<int, int> > gen = Combine(Range(0, 0),
521 const ParamGenerator<tuple<int, int> > gen = Combine(Values(0, 1),
531 const ParamGenerator<tuple<const char*, int, int, int, int, int, int, int,
539 tuple<const char*, int, int, int, int, int, int, int, int, int>