Lines Matching full:tuple
1197 // tuple<T1, T2, ..., TN> where T1, T2, ..., TN are the types
1201 // by the maximum number of elements in the tuple implementation used by Google
1207 // the parameter values tuple("cat", BLACK), tuple("cat", WHITE),
1208 // tuple("dog", BLACK), and tuple("dog", WHITE):
1212 // : public testing::TestWithParam<tuple<const char*, Color> > {...};
1224 // : public testing::TestWithParam<tuple(bool, bool)> > {
1226 // // Assigns external_flag_1 and external_flag_2 values from the tuple.