gtest.h | 162 // GTEST_HAS_TR1_TUPLE - Define it to 1/0 to indicate tr1::tuple 172 // Test's own tr1 tuple implementation should be 588 // Determines whether Google Test can use tr1/tuple. You can define 589 // this macro to 0 to prevent Google Test from using tuple (any 590 // feature depending on tuple with be disabled in this mode). 593 // STLport, provided with the Android NDK, has neither <tr1/tuple> or <tuple>. 601 // Determines whether Google Test's own tr1 tuple implementation 606 // We use our own TR1 tuple if we aren't sure the user has an 609 // with a TR1 tuple implementation. NVIDIA's CUDA NVCC compile 838 class tuple<> { class in namespace:std::tr1 840 tuple() {} function in class:std::tr1::tuple 841 tuple(const tuple& \/* t *\/) {} function in class:std::tr1::tuple 850 tuple() : f0_() {} function 854 tuple(const tuple& t) : f0_(t.f0_) {} function 882 tuple() : f0_(), f1_() {} function 887 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_) {} function 892 tuple(const ::std::pair<U0, U1>& p) : f0_(p.first), f1_(p.second) {} function 925 tuple() : f0_(), f1_(), f2_() {} function 930 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_) {} function 962 tuple() : f0_(), f1_(), f2_(), f3_() {} function 968 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_) {} function 1003 tuple() : f0_(), f1_(), f2_(), f3_(), f4_() {} function 1009 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function 1047 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_() {} function 1054 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function 1094 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_() {} function 1101 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function 1143 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_() {} function 1151 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function 1195 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_(), f8_() {} function 1203 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function 1245 class tuple { class in namespace:std::tr1 1249 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_(), f8_(), function in class:std::tr1::tuple 1258 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function in class:std::tr1::tuple [all...] |