Home | History | Annotate | Download | only in test

Lines Matching refs:tuple

71 using std::tr1::tuple;
1754 typedef ::std::tr1::tuple<long, int> Tuple2; // NOLINT
1756 // Tests that Eq() matches a 2-tuple where the first field == the
1770 // Tests that Ge() matches a 2-tuple where the first field >= the
1785 // Tests that Gt() matches a 2-tuple where the first field > the
1800 // Tests that Le() matches a 2-tuple where the first field <= the
1815 // Tests that Lt() matches a 2-tuple where the first field < the
1830 // Tests that Ne() matches a 2-tuple where the first field != the
3902 bool MatchAndExplain(const tuple<T1, T2>& a_pair,
4005 const Matcher<tuple<const double&, const int&> > m1 = IsHalfOf();
4009 // This type works as a tuple<const double&, const int&> can be
4010 // implicitly cast to tuple<double, int>.
4011 const Matcher<tuple<double, int> > m2 = IsHalfOf();