HomeSort by relevance Sort by last modified time
    Searched defs:Tuple3 (Results 1 - 2 of 2) sorted by null

  /external/chromium/base/
tuple.h 110 struct Tuple3 {
116 Tuple3() {}
117 Tuple3(typename TupleTraits<A>::ParamType a,
299 struct TupleTypes< Tuple3<A, B, C> > {
300 typedef Tuple3<typename TupleTraits<A>::ValueType,
303 typedef Tuple3<typename TupleTraits<A>::RefType,
306 typedef Tuple3<typename TupleTraits<A>::ParamType,
442 inline Tuple3<A, B, C> MakeTuple(const A& a, const B& b, const C& c) {
443 return Tuple3<A, B, C>(a, b, c);
494 inline Tuple3<A&, B&, C&> MakeRefTuple(A& a, B& b, C& c)
    [all...]
  /external/chromium/testing/gmock/test/
gmock-generated-matchers_test.cc 167 typedef tuple<char, int, int> Tuple3;
168 const Matcher<Tuple3> m = Args<1, 2>(Lt());
169 EXPECT_TRUE(m.Matches(Tuple3('a', 1, 2)));
170 EXPECT_FALSE(m.Matches(Tuple3('b', 2, 2)));
174 typedef tuple<char, char, int> Tuple3;
175 const Matcher<const Tuple3&> m = Args<0, 1>(Lt());
176 EXPECT_TRUE(m.Matches(Tuple3('a', 'b', 2)));
177 EXPECT_FALSE(m.Matches(Tuple3('b', 'b', 2)));
    [all...]

Completed in 30 milliseconds