Searched refs:tuple (Results 126 - 150 of 652) sorted by relevance

1234567891011>>

/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
H A Dalloc_move_pair.pass.cpp10 // <tuple>
12 // template <class... Types> class tuple;
15 // tuple(allocator_arg_t, const Alloc& a, pair<U1, U2>&&);
19 #include <tuple>
47 typedef std::tuple<alloc_first, std::unique_ptr<B>> T1;
H A Dtest_lazy_sfinae.pass.cpp10 // <tuple>
12 // template <class... Types> class tuple;
16 #include <tuple>
47 // Construct a tuple<T1, T2> from pair<int, int> where T1 and T2
50 // (1) tuple(TupleLike) -> checks is_constructible<Tn, int>
51 // (2) tuple(UTypes...) -> checks is_constructible<T1, pair<int, int>>
62 std::tuple<T1, T2> t(p);
87 // (1) tuple(Types const&...)
88 // (2) tuple(UTypes&&...)
95 std::tuple<NonConstCopyabl
[all...]
H A Dmove.pass.cpp10 // <tuple>
12 // template <class... Types> class tuple;
14 // tuple(tuple&& u);
18 #include <tuple>
53 using Tup = std::tuple<Elem>;
87 typedef std::tuple<> T;
93 typedef std::tuple<MoveOnly> T;
99 typedef std::tuple<MoveOnly, MoveOnly> T;
106 typedef std::tuple<MoveOnl
[all...]
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.creation/
H A Dmake_tuple.pass.cpp10 // <tuple>
12 // template <class... Types> class tuple;
15 // tuple<VTypes...> make_tuple(Types&&... t);
19 #include <tuple>
30 std::tuple<int, int&, float&> t = std::make_tuple(1, std::ref(i),
H A Dtie.pass.cpp10 // <tuple>
12 // template <class... Types> class tuple;
15 // tuple<Types&...> tie(Types&... t);
19 #include <tuple>
30 using ExpectT = std::tuple<int&, decltype(std::ignore)&, double&>;
36 // FIXME: If/when tuple gets constexpr assignment
56 constexpr std::tuple<const int &, const double &> t = std::tie(i, f);
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/nodes/
H A DNodeTupleTest.java45 NodeTuple tuple = new NodeTuple(key, value);
48 tuple.toString());
/external/libcxx/test/std/experimental/utilities/tuple/tuple.apply/
H A Dconstexpr_types.pass.cpp12 // <experimental/tuple>
18 #include <experimental/tuple>
114 test_0<std::tuple<>>();
115 test_1<std::tuple<int>>();
116 test_2<std::tuple<int, int>>();
H A Darg_type.pass.cpp12 // <experimental/tuple>
18 #include <experimental/tuple>
170 test_values<std::tuple<int, int>>();
174 test_refs<std::tuple<int &, int &>>();
177 test_const_refs<std::tuple<int const &, int const &>>();
180 test_pointer<std::tuple<int *, int *>>();
184 test_const_pointer<std::tuple<int const *, int const *>>();
/external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
H A Dp9-0x.cpp48 struct tuple { }; struct
51 void accept_tuple(tuple<Types...>);
53 void test_explicit_spec_extension_targs(tuple<int, float, double> t3) {
/external/clang/test/CodeGenCXX/
H A Dmangle-variadic-templates.cpp8 template<typename ...Types> struct tuple { }; struct
50 template<typename ...Types> tuple<Types...> f4() {}
52 template tuple<int, float, double> f4();
/external/elfutils/backends/
H A Dsparc_initreg.c107 Dwarf_Word tuple = ptrace (PTRACE_PEEKDATA, tid,
113 locals_outs[2*i] = (tuple >> 32) & 0xffffffff;
114 locals_outs[2*i+1] = tuple & 0xffffffff;
/external/gemmlowp/public/
H A Doutput_stages.h23 #include <tuple>
97 // An output pipeline is just a std::tuple of output stages.
100 inline std::tuple<OutputStageQuantizeDownInt32ToUint8Scale,
113 // An output pipeline is just a std::tuple of output stages.
117 inline std::tuple<OutputStageQuantizeDownInt32ToUint8ScalePC<tShape>,
/external/libchrome/base/
H A Dtuple.h5 // Use std::tuple as tuple type. This file contains helper functions for
8 // or instance and method pointer, and unpack a tuple into arguments to the
13 // std::tuple<int, const char*> tuple_a(1, "wee");
14 // std::tuple<int, const char*> tuple_b = std::make_tuple(1, "wee");
29 #include <tuple>
108 // rvalue-reference of a tuple, where an rvalue-reference is expected.
110 typename std::tuple_element<I, std::tuple<Ts...>>::type&& get(
111 std::tuple<Ts...>&& t) {
112 using ElemType = typename std::tuple_element<I, std::tuple<T
[all...]
/external/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/
H A Dconstruct_piecewise_pair.pass.cpp19 // tuple<Args1...>, tuple<Args2...>)
24 #include <tuple>
38 std::tuple<TTuple...> ttuple, std::tuple<UTuple...> utuple)
58 void test_pmr_uses_allocator(std::tuple<TTypes...> ttuple, std::tuple<UTypes...> utuple)
92 std::tuple<> t1;
98 std::tuple<int> t1(42);
99 std::tuple<> t
[all...]
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue139/
H A DUniqueKeyTest.java48 for (NodeTuple tuple : nodeValue) {
49 Node keyNode = tuple.getKeyNode();
50 Node valueNode = tuple.getValueNode();
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/partialconstruct/
H A DFragmentComposer.java42 for (NodeTuple tuple : root.getValue()) {
43 Node keyNode = tuple.getKeyNode();
46 return tuple.getValueNode();
/external/wpa_supplicant_8/wpa_supplicant/examples/
H A Ddbus-listen-preq.py20 print '%.2x:%.2x:%.2x:%.2x:%.2x:%.2x' % tuple(args['addr']),
22 print '-> %.2x:%.2x:%.2x:%.2x:%.2x:%.2x' % tuple(args['dst']),
24 print '(bssid %.2x:%.2x:%.2x:%.2x:%.2x:%.2x)' % tuple(args['dst']),
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dp4.cpp3 template<typename... Types> struct tuple;
153 typedef tuple<Types& ...> types;
156 tuple<int&, float&> *t_int_ref_float_ref;
161 typedef tuple<typename Types::type...> types;
164 tuple<int, float> *t_int_float;
170 typedef tuple<int_c<N>...> type;
174 tuple<int_c<1>, int_c<2>, int_c<3>, int_c<4>,
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.apply/
H A Dmake_from_tuple.pass.cpp12 // <tuple>
16 #include <tuple>
86 constexpr std::tuple<> tup;
90 constexpr std::tuple<int> tup(42);
94 constexpr std::tuple<int, long, void*> tup(42, 101, nullptr);
113 using Tup = std::tuple<>;
120 using Tup = std::tuple<int>;
129 using Tup = std::tuple<int&, const char*, unsigned&&>;
174 using Tuple = std::tuple<int, NothrowMoveable>;
188 using Tuple = std::tuple<in
[all...]
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/representer/
H A DRepresenter.java84 NodeTuple tuple = representJavaBeanProperty(javaBean, property, memberValue,
86 if (tuple == null) {
89 if (((ScalarNode) tuple.getKeyNode()).getStyle() != null) {
92 Node nodeValue = tuple.getValueNode();
96 value.add(tuple);
202 NodeTuple tuple = iter.next();
203 Node keyNode = tuple.getKeyNode();
214 for (NodeTuple tuple : mnode.getValue()) {
215 resetTag(keyType, tuple.getKeyNode());
216 resetTag(valueType, tuple
[all...]
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
H A DTensorSyclTuple.h17 * Minimal implementation of std::tuple that can be used inside a SYCL kernel.
24 namespace tuple { namespace in namespace:utility
37 /// \ztparam Ts... - the types of the elements that the tuple stores.
42 /// \brief specialisation of the \ref Tuple class when the tuple has at least
44 /// \tparam T : the type of the first element in the tuple.
45 /// \tparam Ts... the rest of the elements in the tuple. Ts... can be empty.
55 /// elements inside the tuple
56 /// \tparam size_t the number of elements inside the tuple
57 /// \tparam class the tuple class
62 /// elements inside the tuple i
[all...]
/external/libcxx/test/std/containers/unord/unord.map/unord.map.elem/
H A Dindex.pass.cpp128 cc->expect<std::piecewise_construct_t const&, std::tuple<Key const&>&&, std::tuple<>&&>();
140 cc->expect<std::piecewise_construct_t const&, std::tuple<Key const&>&&, std::tuple<>&&>();
152 cc->expect<std::piecewise_construct_t const&, std::tuple<Key &&>&&, std::tuple<>&&>();
/external/libnetfilter_conntrack/include/internal/
H A Dprototypes.h11 void __parse_tuple(const struct nfattr *attr, struct __nfct_tuple *tuple, int dir, uint32_t *set);
13 int __snprintf_address(char *buf, unsigned int len, const struct __nfct_tuple *tuple, const char *src_tag, const char *dst_tag);
15 int __snprintf_proto(char *buf, unsigned int len, const struct __nfct_tuple *tuple);
24 int __snprintf_addr_xml(char *buf, unsigned int len, const struct __nfct_tuple *tuple, enum __nfct_addr type);
25 int __snprintf_proto_xml(char *buf, unsigned int len, const struct __nfct_tuple *tuple, enum __nfct_addr type);
44 int nfct_parse_tuple(const struct nlattr *attr, struct __nfct_tuple *tuple, int dir, uint32_t *set);
/external/llvm/lib/Fuzzer/test/
H A DFuzzerFnAdapterUnittest.cpp12 bool Unpack(std::tuple<Args...> *Tuple, std::initializer_list<uint8_t> data) {
18 std::tuple<bool> T;
29 std::tuple<bool, bool> T;
43 std::tuple<bool, int> T;
52 std::tuple<std::vector<uint8_t>> T;
77 std::tuple<std::string> T;
/external/autotest/client/site_tests/security_AccountsBaseline/
H A Dsecurity_AccountsBaseline.py23 tuple(expected[1:4]), expected[0], tuple(actual[1:4]))
37 tuple(expected[1:3]), expected[0], tuple(actual[1:3]))

Completed in 903 milliseconds

1234567891011>>