| /external/tensorflow/tensorflow/compiler/xla/service/ |
| hlo_cse_test.cc | 183 // Tie the constants together with a tuple. This makes it easier to refer to 185 auto tuple = builder.AddInstruction(HloInstruction::CreateTuple( local 192 EXPECT_THAT(tuple, 193 op::Tuple(common_constant1, common_constant2, uncommon_constant)); 199 auto first_operand = tuple->operand(0); 202 EXPECT_THAT(tuple, 203 op::Tuple(first_operand, first_operand, uncommon_constant)); 217 auto tuple = local 224 EXPECT_THAT(tuple, op::Tuple(exp1, exp2, exp3)) 250 auto tuple = local 281 auto tuple = local 365 auto tuple = local [all...] |
| /external/tensorflow/tensorflow/compiler/xla/ |
| shape_util_test.cc | 384 // Test tuple shape. 396 // Test nested tuple shape. 419 // Test tuple shape. 425 // Test nested tuple shape. 443 Shape tuple = ShapeUtil::MakeTupleShape({opaque, scalar, matrix, matrix2}); local 444 Shape nested_tuple = ShapeUtil::MakeTupleShape({tuple, matrix}); 451 ShapeUtil::HumanString(tuple)); 460 ShapeUtil::HumanStringWithLayout(tuple)); 465 {opaque, scalar, matrix, matrix2, tuple, nested_tuple}, nested_tuple); 480 prog.add_parameter_names("tuple"); [all...] |
| /external/tensorflow/tensorflow/compiler/xla/tests/ |
| multioutput_fusion_test.cc | 89 auto tuple = computation->AddInstruction(HloInstruction::CreateTuple( local 92 HloInstruction::CreateGetTupleElement(elem_shape2, tuple, 0)); 94 HloInstruction::CreateGetTupleElement(elem_shape2, tuple, 1)); 100 {tuple, sub, add2, broadcast}, HloInstruction::FusionKind::kLoop), 148 auto tuple = computation->AddInstruction(HloInstruction::CreateTuple( local 152 HloInstruction::CreateGetTupleElement(elem_shape_U8, tuple, 0)); 154 HloInstruction::CreateGetTupleElement(elem_shape_F32, tuple, 1)); 159 {tuple, sub_U8, add, param0_U8, param1_F32}, 187 gte.3 = ((s32[]), f32[]) get-tuple-element(x.param_0), index=0 188 gte.2 = (s32[]) get-tuple-element(gte.3), index= [all...] |
| /external/tensorflow/tensorflow/core/kernels/ |
| adjust_hsv_gpu.cu.h | 41 HsvTuple tuple; local 66 tuple.h = h; 67 tuple.s = s; 68 tuple.v = M; 69 return tuple; 74 RgbTuple tuple; local 85 tuple.r = chroma * (between_0_and_1 || between_5_and_6) + 87 tuple.g = chroma * (between_1_and_2 || between_2_and_3) + 89 tuple.b = chroma * (between_3_and_4 || between_4_and_5) + 91 return tuple; [all...] |
| padding_fifo_queue.cc | 59 const PaddingFIFOQueue::Tuple& tuple, int component, OpKernelContext* ctx, 61 TensorShape element_shape(tuple[component].shape()); 64 tuple[component].dtype(), element_shape, out_tensor, &element_access)); 65 *element_access = tuple[component]; 73 Tuple tuple; local 74 tuple.reserve(num_components()); 83 tuple.emplace_back(element); 85 callback(tuple); [all...] |
| queue_base.h | 45 // component_dtypes: The types of each component in a queue-element tuple. 46 // component_shapes: The shapes of each component in a queue-element tuple, 59 Status ValidateTuple(const Tuple& tuple) override; 60 Status ValidateManyTuple(const Tuple& tuple) override; 105 // Returns the number of components in a queue-element tuple. 112 // Code common to Validate*Tuple(). 113 Status ValidateTupleCommon(const Tuple& tuple) const 162 Tuple tuple; member in struct:tensorflow::QueueBase::Attempt [all...] |
| random_shuffle_queue_op.cc | 52 void TryEnqueue(const Tuple& tuple, OpKernelContext* ctx, 54 void TryEnqueueMany(const Tuple& tuple, OpKernelContext* ctx, 71 void DequeueLocked(OpKernelContext* ctx, Tuple* tuple) 74 static Status GetElementComponentFromBatch(const Tuple& tuple, int64 index, 116 void RandomShuffleQueue::DequeueLocked(OpKernelContext* ctx, Tuple* tuple) { 285 Tuple tuple; local [all...] |
| stage_op.cc | 36 using Tuple = std::vector<Tensor>; 46 std::deque<Tuple> buf_; 73 std::size_t GetTupleBytes(const Tuple& tuple) { 74 return std::accumulate(tuple.begin(), tuple.end(), 0, 85 // the Buffer takes ownership of the Tuple 86 Status Put(Tuple* tuple) { 89 std::size_t tuple_bytes = GetTupleBytes(*tuple); 216 Buffer::Tuple tuple; variable 243 Buffer::Tuple tuple; variable 276 Buffer::Tuple tuple; variable [all...] |
| /external/ImageMagick/coders/ |
| txt.c | 703 tuple[MagickPathExtent]; 789 GetColorTuple(&pixel,MagickFalse,tuple); 793 (void) WriteBlobString(image,tuple); 802 (void) CopyMagickString(tuple,"(",MagickPathExtent); 805 tuple); 808 ConcatenateColorComponent(&pixel,RedPixelChannel,compliance,tuple); 809 (void) ConcatenateMagickString(tuple,",",MagickPathExtent); 811 tuple); 812 (void) ConcatenateMagickString(tuple,",",MagickPathExtent); 813 ConcatenateColorComponent(&pixel,BluePixelChannel,compliance,tuple); 695 tuple[MagickPathExtent]; local [all...] |
| /external/clang/lib/Frontend/ |
| InitPreprocessor.cpp | 574 VersionTuple tuple = LangOpts.ObjCRuntime.getVersion(); local 577 if (tuple.getMinor().hasValue()) 578 minor = tuple.getMinor().getValue(); 581 if (tuple.getSubminor().hasValue()) 582 subminor = tuple.getSubminor().getValue(); 585 Twine(tuple.getMajor() * 10000 + minor * 100 + [all...] |
| /external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
| example-bind.cpp | 54 template<typename... Values> class tuple; 56 // Basis case: zero-length tuple 57 template<> class tuple<> { }; class 60 class tuple<Head, Tail...> : private tuple<Tail...> { class in inherits:tuple 61 typedef tuple<Tail...> inherited; 64 tuple() { } function in class:tuple 67 // Construct tuple from separate arguments. 68 tuple(typename add_const_reference<Head>::type v, function in class:tuple 72 // Construct tuple from another tuple. 73 template<typename... VValues> tuple(const tuple<VValues...>& other) function in class:tuple [all...] |
| example-tuple.cpp | 4 // Example tuple implementation from the variadic templates proposal, 54 template<typename... Values> class tuple; 56 // Basis case: zero-length tuple 57 template<> class tuple<> { }; class 60 class tuple<Head, Tail...> : private tuple<Tail...> { class in inherits:tuple 61 typedef tuple<Tail...> inherited; 64 tuple() { } function in class:tuple 67 // Construct tuple from separate arguments. 68 tuple(typename add_const_reference<Head>::type v function in class:tuple 73 template<typename... VValues> tuple(const tuple<VValues...>& other) function in class:tuple [all...] |
| metafunctions.cpp | 15 template<typename...> struct tuple { }; struct 65 int check0[is_same<EverythingToInt<tuple<double, float>>::type, 66 tuple<int, int>>::value? 1 : -1]; 173 typedef tuple<typename Meta<T>::type...> type; 193 tuple<int&, int*, int const>>::value? 1 : -1]; 202 tuple<int&, int*, int const>>::value? 1 : -1]; 232 tuple<int&, int*, int const>>::value? 1 : -1]; 271 int check0[is_same<replace_with_int<pair<tuple<float, double, short>, 273 pair<tuple<int, int, int>, pair<int, int>>>::value? 1 : -1];
|
| multi-level-substitution.cpp | 4 template<typename...> struct tuple { }; struct 38 struct Inner<tuple<pair<Types, YTypes>...> > { 43 int check0[X<short, int, long>::Inner<tuple<pair<short, unsigned short>, 48 int check1[X<short, int>::Inner<tuple<pair<short, unsigned short>, 61 struct Inner<tuple<pair<Types, YTypes>...>, 67 int check2[X1<short, int, long>::Inner<tuple<pair<short, unsigned short>, 74 int check3[X1<short, int>::Inner<tuple<pair<short, unsigned short>, 119 struct Inner<tuple<pair<Types1, Types2>...>, 125 int check6[X3<short, int, long>::Inner<tuple<pair<short, unsigned short>, 133 int check7[X3<short, int>::Inner<tuple<pair<short, unsigned short> 278 template<typename...> struct tuple {}; struct in namespace:PR13386 [all...] |
| /external/clang/test/SemaCXX/ |
| for-range-examples.cpp | 75 struct tuple : tuple_elem<A>... { struct in namespace:map_range 76 tuple() : tuple_elem<A>()... {} function in struct:map_range::tuple 77 tuple(A... a) : tuple_elem<A>(a)... {} function in struct:map_range::tuple 141 typedef map_range::tuple<int, double> T;
|
| /external/clang/test/SemaTemplate/ |
| alias-templates.cpp | 173 template <typename ... Args> struct tuple {}; struct in namespace:PR16646::test1 174 template <typename ... Args> using Zero = tuple<DefaultValue<Args> ...>; 184 template <typename ... Args> struct tuple {}; struct in namespace:PR16646::test2 185 template <template<int x> class... Args> using Zero = tuple<DefaultValue<Args> ...>;
|
| /external/google-breakpad/src/testing/gtest/include/gtest/internal/ |
| 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...] |
| /external/googletest/googletest/include/gtest/internal/ |
| 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; \ 57 // with our own definitions. Therefore using our own tuple does not work on 60 # error "gtest's tuple doesn't compile on Visual Studio 2010 or later. \ 64 // GTEST_n_TUPLE_(T) is the type of an n-tuple. 65 #define GTEST_0_TUPLE_(T) tuple<> 66 #define GTEST_1_TUPLE_(T) tuple<T##0, void, void, void, void, void, void, 205 class tuple<> { class in namespace:std::tr1 207 tuple() {} function in class:std::tr1::tuple 208 tuple(const tuple& \/* t *\/) {} function in class:std::tr1::tuple 217 tuple() : f0_() {} function 221 tuple(const tuple& t) : f0_(t.f0_) {} function 249 tuple() : f0_(), f1_() {} function 254 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_) {} function 259 tuple(const ::std::pair<U0, U1>& p) : f0_(p.first), f1_(p.second) {} function 292 tuple() : f0_(), f1_(), f2_() {} function 297 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_) {} function 329 tuple() : f0_(), f1_(), f2_(), f3_() {} function 335 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_) {} function 370 tuple() : f0_(), f1_(), f2_(), f3_(), f4_() {} function 376 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function 414 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_() {} function 421 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function 461 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_() {} function 468 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function 510 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_() {} function 518 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function 562 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_(), f8_() {} function 570 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function 612 class tuple { class in namespace:std::tr1 616 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_(), f8_(), function in class:std::tr1::tuple 625 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function in class:std::tr1::tuple [all...] |
| /external/libnl/lib/netfilter/ |
| ct.c | 438 struct nlattr *tuple, *ip, *proto; local 444 tuple = nla_nest_start(msg, repl ? CTA_TUPLE_REPLY : CTA_TUPLE_ORIG); 445 if (!tuple) 509 nla_nest_end(msg, tuple); 530 /* REPLY tuple is optional, dont add unless at least src/dst specified */
|
| exp.c | 77 static int exp_parse_ip(struct nfnl_exp *exp, int tuple, struct nlattr *attr) 91 err = nfnl_exp_set_src(exp, tuple, addr); 100 err = nfnl_exp_set_dst(exp, tuple, addr); 109 err = nfnl_exp_set_src(exp, tuple, addr); 118 err = nfnl_exp_set_dst(exp, tuple, addr); 132 static int exp_parse_proto(struct nfnl_exp *exp, int tuple, struct nlattr *attr) 144 nfnl_exp_set_l4protonum(exp, tuple, nla_get_u8(tb[CTA_PROTO_NUM])); 151 nfnl_exp_set_ports(exp, tuple, srcport, dstport); 160 nfnl_exp_set_icmp(exp, tuple, icmpid, icmptype, icmpcode); 164 static int exp_parse_tuple(struct nfnl_exp *exp, int tuple, struct nlattr *attr 345 struct nlattr *tuple, *ip, *proto; local [all...] |
| /external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/ |
| 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; \ 57 // with our own definitions. Therefore using our own tuple does not work on 60 # error "gtest's tuple doesn't compile on Visual Studio 2010 or later. \ 64 // GTEST_n_TUPLE_(T) is the type of an n-tuple. 65 #define GTEST_0_TUPLE_(T) tuple<> 66 #define GTEST_1_TUPLE_(T) tuple<T##0, void, void, void, void, void, void, 205 class tuple<> { class in namespace:std::tr1 207 tuple() {} function in class:std::tr1::tuple 208 tuple(const tuple& \/* t *\/) {} function in class:std::tr1::tuple 217 tuple() : f0_() {} function 221 tuple(const tuple& t) : f0_(t.f0_) {} function 249 tuple() : f0_(), f1_() {} function 254 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_) {} function 259 tuple(const ::std::pair<U0, U1>& p) : f0_(p.first), f1_(p.second) {} function 292 tuple() : f0_(), f1_(), f2_() {} function 297 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_) {} function 329 tuple() : f0_(), f1_(), f2_(), f3_() {} function 335 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_) {} function 370 tuple() : f0_(), f1_(), f2_(), f3_(), f4_() {} function 376 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function 414 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_() {} function 421 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function 461 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_() {} function 468 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function 510 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_() {} function 518 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function 562 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_(), f8_() {} function 570 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function 612 class tuple { class in namespace:std::tr1 616 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_(), f8_(), function in class:std::tr1::tuple 625 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function in class:std::tr1::tuple [all...] |
| /external/llvm/utils/unittest/googletest/include/gtest/internal/ |
| gtest-tuple.h | 34 // Implements a subset of TR1 tuple needed by Google Test and Google Mock. 42 // tuple template as a friend (it complains that tuple is redefined). This 50 template <GTEST_10_TYPENAMES_(U)> friend class tuple; \ 54 // GTEST_n_TUPLE_(T) is the type of an n-tuple. 55 #define GTEST_0_TUPLE_(T) tuple<> 56 #define GTEST_1_TUPLE_(T) tuple<T##0, void, void, void, void, void, void, \ 58 #define GTEST_2_TUPLE_(T) tuple<T##0, T##1, void, void, void, void, void, \ 60 #define GTEST_3_TUPLE_(T) tuple<T##0, T##1, T##2, void, void, void, void, \ 62 #define GTEST_4_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, void, void, void, 175 class tuple<> { class in namespace:std::tr1 177 tuple() {} function in class:std::tr1::tuple 178 tuple(const tuple& \/* t *\/) {} function in class:std::tr1::tuple 187 tuple() : f0_() {} function 191 tuple(const tuple& t) : f0_(t.f0_) {} function 219 tuple() : f0_(), f1_() {} function 224 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_) {} function 229 tuple(const ::std::pair<U0, U1>& p) : f0_(p.first), f1_(p.second) {} function 262 tuple() : f0_(), f1_(), f2_() {} function 267 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_) {} function 299 tuple() : f0_(), f1_(), f2_(), f3_() {} function 305 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_) {} function 340 tuple() : f0_(), f1_(), f2_(), f3_(), f4_() {} function 346 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function 384 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_() {} function 391 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function 431 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_() {} function 438 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function 480 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_() {} function 488 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function 532 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_(), f8_() {} function 540 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function 582 class tuple { class in namespace:std::tr1 586 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_(), f8_(), function in class:std::tr1::tuple 595 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function in class:std::tr1::tuple [all...] |
| /external/mesa3d/src/gtest/include/gtest/internal/ |
| 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...] |
| /external/protobuf/gtest/include/gtest/internal/ |
| gtest-tuple.h | 34 // Implements a subset of TR1 tuple needed by Google Test and Google Mock. 42 // tuple template as a friend (it complains that tuple is redefined). This 50 template <GTEST_10_TYPENAMES_(U)> friend class tuple; \ 54 // GTEST_n_TUPLE_(T) is the type of an n-tuple. 55 #define GTEST_0_TUPLE_(T) tuple<> 56 #define GTEST_1_TUPLE_(T) tuple<T##0, void, void, void, void, void, void, \ 58 #define GTEST_2_TUPLE_(T) tuple<T##0, T##1, void, void, void, void, void, \ 60 #define GTEST_3_TUPLE_(T) tuple<T##0, T##1, T##2, void, void, void, void, \ 62 #define GTEST_4_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, void, void, void, 175 class tuple<> { class in namespace:std::tr1 177 tuple() {} function in class:std::tr1::tuple 178 tuple(const tuple& \/* t *\/) {} function in class:std::tr1::tuple 187 tuple() : f0_() {} function 191 tuple(const tuple& t) : f0_(t.f0_) {} function 219 tuple() : f0_(), f1_() {} function 224 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_) {} function 229 tuple(const ::std::pair<U0, U1>& p) : f0_(p.first), f1_(p.second) {} function 262 tuple() : f0_(), f1_(), f2_() {} function 267 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_) {} function 299 tuple() : f0_(), f1_(), f2_(), f3_() {} function 305 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_) {} function 340 tuple() : f0_(), f1_(), f2_(), f3_(), f4_() {} function 346 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function 384 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_() {} function 391 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function 431 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_() {} function 438 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function 480 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_() {} function 488 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function 532 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_(), f8_() {} function 540 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function 582 class tuple { class in namespace:std::tr1 586 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_(), f8_(), function in class:std::tr1::tuple 595 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function in class:std::tr1::tuple [all...] |
| /external/python/cpython3/Objects/ |
| methodobject.c | 215 /* Slow-path: create a temporary tuple */ 216 PyObject *tuple; local 225 tuple = _PyStack_AsTuple(args, nargs); 226 if (tuple == NULL) { 231 result = (*(PyCFunctionWithKeywords)meth) (self, tuple, kwargs); 234 result = (*meth) (self, tuple); 236 Py_DECREF(tuple);
|