gtest-tuple.h | 2 // pump.py gtest-tuple.h.pump 36 // Implements a subset of TR1 tuple needed by Google Test and Google Mock. 44 // tuple template as a friend (it complains that tuple is redefined). This 52 template <GTEST_10_TYPENAMES_(U)> friend class tuple; \ 56 // GTEST_n_TUPLE_(T) is the type of an n-tuple. 57 #define GTEST_0_TUPLE_(T) tuple<> 58 #define GTEST_1_TUPLE_(T) tuple<T##0, void, void, void, void, void, void, \ 60 #define GTEST_2_TUPLE_(T) tuple<T##0, T##1, void, void, void, void, void, \ 62 #define GTEST_3_TUPLE_(T) tuple<T##0, T##1, T##2, void, void, void, void, 197 class tuple<> { class in namespace:std::tr1 199 tuple() {} function in class:std::tr1::tuple 200 tuple(const tuple& \/* t *\/) {} function in class:std::tr1::tuple 209 tuple() : f0_() {} function 213 tuple(const tuple& t) : f0_(t.f0_) {} function 241 tuple() : f0_(), f1_() {} function 246 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_) {} function 251 tuple(const ::std::pair<U0, U1>& p) : f0_(p.first), f1_(p.second) {} function 284 tuple() : f0_(), f1_(), f2_() {} function 289 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_) {} function 321 tuple() : f0_(), f1_(), f2_(), f3_() {} function 327 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_) {} function 362 tuple() : f0_(), f1_(), f2_(), f3_(), f4_() {} function 368 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function 406 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_() {} function 413 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function 453 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_() {} function 460 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function 502 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_() {} function 510 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function 554 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_(), f8_() {} function 562 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function 604 class tuple { class in namespace:std::tr1 608 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_(), f8_(), function in class:std::tr1::tuple 617 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function in class:std::tr1::tuple [all...] |