Lines Matching refs:tr1
600 inline void PrintTo(const ::std::tr1::tuple<>& t, ::std::ostream* os) { in PrintTo()
605 void PrintTo(const ::std::tr1::tuple<T1>& t, ::std::ostream* os) { in PrintTo()
610 void PrintTo(const ::std::tr1::tuple<T1, T2>& t, ::std::ostream* os) { in PrintTo()
615 void PrintTo(const ::std::tr1::tuple<T1, T2, T3>& t, ::std::ostream* os) { in PrintTo()
620 void PrintTo(const ::std::tr1::tuple<T1, T2, T3, T4>& t, ::std::ostream* os) { in PrintTo()
625 void PrintTo(const ::std::tr1::tuple<T1, T2, T3, T4, T5>& t, in PrintTo()
632 void PrintTo(const ::std::tr1::tuple<T1, T2, T3, T4, T5, T6>& t, in PrintTo()
639 void PrintTo(const ::std::tr1::tuple<T1, T2, T3, T4, T5, T6, T7>& t, in PrintTo()
646 void PrintTo(const ::std::tr1::tuple<T1, T2, T3, T4, T5, T6, T7, T8>& t, in PrintTo()
653 void PrintTo(const ::std::tr1::tuple<T1, T2, T3, T4, T5, T6, T7, T8, T9>& t, in PrintTo()
661 const ::std::tr1::tuple<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>& t, in PrintTo()
875 static const size_t tuple_size = ::std::tr1::tuple_size<Tuple>::value;
878 struct tuple_element : ::std::tr1::tuple_element<I, Tuple> {};
882 const typename ::std::tr1::tuple_element<I, Tuple>::type>::type get( in get()
884 return ::std::tr1::get<I>(tuple); in get()