Searched refs:tuple (Results 101 - 125 of 652) sorted by relevance

1234567891011>>

/external/libcxx/test/std/experimental/utilities/tuple/tuple.apply/
H A Dref_qualifiers.pass.cpp12 // <experimental/tuple>
18 #include <experimental/tuple>
39 constexpr std::tuple<> tp;
47 std::tuple<> tp;
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.assign/
H A Dmove_pair.pass.cpp10 // <tuple>
12 // template <class... Types> class tuple;
15 // tuple& operator=(pair<U1, U2>&& u);
19 #include <tuple>
43 typedef std::tuple<long long, std::unique_ptr<B>> T1;
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
H A DUTypes.fail.cpp10 // <tuple>
12 // template <class... Types> class tuple;
15 // explicit tuple(UTypes&&... u);
21 from UTypes are bound by the explicit tuple constructor.
24 #include <tuple>
49 std::tuple<MoveOnly> t = 1;
H A Dmove_pair.pass.cpp10 // <tuple>
12 // template <class... Types> class tuple;
14 // template <class U1, class U2> tuple(pair<U1, U2>&& u);
18 #include <tuple>
42 typedef std::tuple<long long, std::unique_ptr<B>> T1;
H A Dalloc_const_pair.pass.cpp10 // <tuple>
12 // template <class... Types> class tuple;
15 // tuple(allocator_arg_t, const Alloc& a, const pair<U1, U2>&);
19 #include <tuple>
31 typedef std::tuple<long long, double> T1;
39 typedef std::tuple<alloc_first, double> T1;
49 typedef std::tuple<alloc_first, alloc_last> T1;
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.elem/
H A Dget_const.fail.cpp10 // <tuple>
12 // template <class... Types> class tuple;
15 // typename tuple_element<I, tuple<Types...> >::type const&
16 // get(const tuple<Types...>& t);
20 #include <tuple>
27 typedef std::tuple<double&, std::string, int> T;
H A Dtuple.by.type.pass.cpp12 #include <tuple>
25 auto t1 = std::tuple<int, std::string, cf> { 42, "Hi", { 1,2 }};
33 auto t2 = std::tuple<int, std::string, int, cf> { 42, "Hi", 23, { 1,2 }};
40 constexpr std::tuple<int, const int, double, double> p5 { 1, 2, 3.4, 5.6 };
46 const std::tuple<int, const int, double, double> p5 { 1, 2, 3.4, 5.6 };
55 std::tuple<upint> t(upint(new int(4)));
63 const std::tuple<upint> t(upint(new int(4)));
72 std::tuple<int&, int const&> const t(x, y);
82 std::tuple<int&&, int const&&> const t(std::move(x), std::move(y));
90 constexpr const std::tuple<in
[all...]
H A Dget_const_rv.pass.cpp10 // <tuple>
12 // template <class... Types> class tuple;
15 // const typename tuple_element<I, tuple<Types...> >::type&&
16 // get(const tuple<Types...>&& t);
20 #include <tuple>
31 typedef std::tuple<int> T;
40 typedef std::tuple<std::string, int> T;
55 std::tuple<int&, int const&> const p(x, y);
65 std::tuple<int&&, int const&&> const p(std::move(x), std::move(y));
74 typedef std::tuple<doubl
[all...]
/external/google-breakpad/src/testing/gtest/include/gtest/internal/
H A Dgtest-tuple.h2 // 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<
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/
H A Dgtest-tuple.h2 // 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<
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/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
H A Dgtest-tuple.h2 // 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<
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/
H A Dgtest-tuple.h34 // 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<
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/
H A Dgtest-tuple.h34 // 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<
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/protobuf/gtest/include/gtest/internal/
H A Dgtest-tuple.h34 // 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<
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/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-tuple.h34 // 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<
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/v8/testing/gtest/include/gtest/internal/
H A Dgtest-tuple.h2 // 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<
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/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
H A Dgtest-tuple.h2 // 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<
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/autotest/client/deps/lansim/src/py/
H A Dtools.py28 return '%.2X:%.2X:%.2X:%.2X:%.2X:%.2X' % tuple(map(ord, packed_hw_addr))
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.helper/
H A Dtuple_size_incomplete.fail.cpp10 // <tuple>
12 // template <class... Types> class tuple;
15 // class tuple_size<tuple<Types...>>
20 #include <tuple>
/external/libcxx/test/libcxx/utilities/tuple/tuple.tuple/tuple.cnstr/
H A Ddisable_reduced_arity_initialization_extension.pass.cpp10 // <tuple>
12 // template <class... Types> class tuple;
15 // explicit tuple(UTypes&&... u);
19 #include <tuple>
45 typedef std::tuple<MO, ND> Tuple;
51 typedef std::tuple<MO, MO, ND> Tuple;
57 // Same idea as above but with a nested tuple type.
58 typedef std::tuple<MO, ND> Tuple;
59 typedef std::tuple<MO, Tuple, MO, MO> NestedTuple;
68 using ExplicitTup = std::tuple<st
[all...]
/external/icu/icu4c/source/test/intltest/
H A Ddatadrivennumberformattestsuite.cpp201 const NumberFormatTestTuple &tuple,
208 if (tuple.formatFlag && tuple.outputFlag) {
211 tuple,
217 else if (tuple.toPatternFlag || tuple.toLocalizedPatternFlag) {
218 result = isToPatternPass(tuple, appendErrorMessage, status);
219 } else if (tuple.parseFlag && tuple.outputFlag && tuple
200 isPass( const NumberFormatTestTuple &tuple, UnicodeString &appendErrorMessage, UErrorCode &status) argument
253 isFormatPass( const NumberFormatTestTuple &tuple, UObject * , UnicodeString &appendErrorMessage, UErrorCode &status) argument
[all...]
/external/libnl/lib/netfilter/
H A Dexp_obj.c172 static void dump_icmp(struct nl_dump_params *p, struct nfnl_exp *exp, int tuple) argument
174 if (nfnl_exp_test_icmp(exp, tuple)) {
176 nl_dump(p, "icmp type %d ", nfnl_exp_get_icmp_type(exp, tuple));
178 nl_dump(p, "code %d ", nfnl_exp_get_icmp_code(exp, tuple));
180 nl_dump(p, "id %d ", nfnl_exp_get_icmp_id(exp, tuple));
616 static int exp_get_src_attr(int tuple) argument
620 switch (tuple) {
638 static int exp_get_dst_attr(int tuple) argument
642 switch (tuple) {
680 int nfnl_exp_set_src(struct nfnl_exp *exp, int tuple, struc argument
687 nfnl_exp_set_dst(struct nfnl_exp *exp, int tuple, struct nl_addr *addr) argument
694 nfnl_exp_test_src(const struct nfnl_exp *exp, int tuple) argument
699 nfnl_exp_test_dst(const struct nfnl_exp *exp, int tuple) argument
704 nfnl_exp_get_src(const struct nfnl_exp *exp, int tuple) argument
713 nfnl_exp_get_dst(const struct nfnl_exp *exp, int tuple) argument
722 exp_get_l4protonum_attr(int tuple) argument
744 nfnl_exp_set_l4protonum(struct nfnl_exp *exp, int tuple, uint8_t l4protonum) argument
752 nfnl_exp_test_l4protonum(const struct nfnl_exp *exp, int tuple) argument
757 nfnl_exp_get_l4protonum(const struct nfnl_exp *exp, int tuple) argument
763 exp_get_l4ports_attr(int tuple) argument
785 nfnl_exp_set_ports(struct nfnl_exp *exp, int tuple, uint16_t srcport, uint16_t dstport) argument
795 nfnl_exp_test_ports(const struct nfnl_exp *exp, int tuple) argument
800 nfnl_exp_get_src_port(const struct nfnl_exp *exp, int tuple) argument
806 nfnl_exp_get_dst_port(const struct nfnl_exp *exp, int tuple) argument
813 exp_get_l4icmp_attr(int tuple) argument
835 nfnl_exp_set_icmp(struct nfnl_exp *exp, int tuple, uint16_t id, uint8_t type, uint8_t code) argument
846 nfnl_exp_test_icmp(const struct nfnl_exp *exp, int tuple) argument
852 nfnl_exp_get_icmp_id(const struct nfnl_exp *exp, int tuple) argument
859 nfnl_exp_get_icmp_type(const struct nfnl_exp *exp, int tuple) argument
866 nfnl_exp_get_icmp_code(const struct nfnl_exp *exp, int tuple) argument
[all...]
/external/google-breakpad/src/testing/include/gmock/internal/
H A Dgmock-generated-internal-utils.h66 // MatcherTuple<T>::type is a tuple type where each field is a Matcher
67 // for the corresponding field in tuple type T.
72 struct MatcherTuple< ::std::tr1::tuple<> > {
73 typedef ::std::tr1::tuple< > type;
77 struct MatcherTuple< ::std::tr1::tuple<A1> > {
78 typedef ::std::tr1::tuple<Matcher<A1> > type;
82 struct MatcherTuple< ::std::tr1::tuple<A1, A2> > {
83 typedef ::std::tr1::tuple<Matcher<A1>, Matcher<A2> > type;
87 struct MatcherTuple< ::std::tr1::tuple<A1, A2, A3> > {
88 typedef ::std::tr1::tuple<Matche
[all...]
/external/googletest/googlemock/include/gmock/internal/
H A Dgmock-generated-internal-utils.h66 // MatcherTuple<T>::type is a tuple type where each field is a Matcher
67 // for the corresponding field in tuple type T.
72 struct MatcherTuple< ::testing::tuple<> > {
73 typedef ::testing::tuple< > type;
77 struct MatcherTuple< ::testing::tuple<A1> > {
78 typedef ::testing::tuple<Matcher<A1> > type;
82 struct MatcherTuple< ::testing::tuple<A1, A2> > {
83 typedef ::testing::tuple<Matcher<A1>, Matcher<A2> > type;
87 struct MatcherTuple< ::testing::tuple<A1, A2, A3> > {
88 typedef ::testing::tuple<Matche
[all...]
/external/v8/testing/gmock/include/gmock/internal/
H A Dgmock-generated-internal-utils.h66 // MatcherTuple<T>::type is a tuple type where each field is a Matcher
67 // for the corresponding field in tuple type T.
72 struct MatcherTuple< ::testing::tuple<> > {
73 typedef ::testing::tuple< > type;
77 struct MatcherTuple< ::testing::tuple<A1> > {
78 typedef ::testing::tuple<Matcher<A1> > type;
82 struct MatcherTuple< ::testing::tuple<A1, A2> > {
83 typedef ::testing::tuple<Matcher<A1>, Matcher<A2> > type;
87 struct MatcherTuple< ::testing::tuple<A1, A2, A3> > {
88 typedef ::testing::tuple<Matche
[all...]

Completed in 954 milliseconds

1234567891011>>