HomeSort by relevance Sort by last modified time
    Searched refs:tuple (Results 76 - 100 of 2452) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/libchrome/base/
tuple_unittest.cc 5 #include "base/tuple.h"
35 std::tuple<> t0 = std::make_tuple();
37 std::tuple<int> t1(1);
38 std::tuple<int, const char*> t2 =
41 std::tuple<int, int, int> t3(1, 2, 3);
43 std::tuple<int, int, int, int*> t4(1, 2, 3, &std::get<0>(t1));
44 std::tuple<int, int, int, int, int*> t5(1, 2, 3, 4, &std::get<0>(t4));
45 std::tuple<int, int, int, int, int, int*> t6(1, 2, 3, 4, 5, &std::get<0>(t4));
97 // Creating the tuple should copy the class to store internally in the tuple
    [all...]
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.assign/
convert_move.pass.cpp 10 // <tuple>
12 // template <class... Types> class tuple;
15 // tuple& operator=(tuple<UTypes...>&& u);
19 #include <tuple>
50 typedef std::tuple<long> T0;
51 typedef std::tuple<long long> T1;
58 typedef std::tuple<long, char> T0;
59 typedef std::tuple<long long, int> T1;
67 typedef std::tuple<long, char, D> T0
    [all...]
move.pass.cpp 10 // <tuple>
12 // template <class... Types> class tuple;
14 // tuple& operator=(tuple&& u);
19 #include <tuple>
55 typedef std::tuple<> T;
61 typedef std::tuple<MoveOnly> T;
68 typedef std::tuple<MoveOnly, MoveOnly> T;
76 typedef std::tuple<MoveOnly, MoveOnly, MoveOnly> T;
86 using T = std::tuple<int&, int&&>
    [all...]
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
alloc_convert_move.pass.cpp 10 // <tuple>
12 // template <class... Types> class tuple;
15 // tuple(allocator_arg_t, const Alloc& a, tuple<UTypes...>&&);
19 #include <tuple>
56 typedef std::tuple<int> T0;
57 typedef std::tuple<alloc_first> T1;
65 typedef std::tuple<std::unique_ptr<D>> T0;
66 typedef std::tuple<std::unique_ptr<B>> T1;
72 typedef std::tuple<int, std::unique_ptr<D>> T0
    [all...]
copy.pass.cpp 10 // <tuple>
12 // template <class... Types> class tuple;
14 // tuple(const tuple& u) = default;
18 #include <tuple>
29 typedef std::tuple<> T;
35 typedef std::tuple<int> T;
41 typedef std::tuple<int, char> T;
48 typedef std::tuple<int, char, std::string> T;
57 typedef std::tuple<int> T
    [all...]
const_Types.pass.cpp 10 // <tuple>
12 // template <class... Types> class tuple;
14 // explicit tuple(const T&...);
18 #include <tuple>
63 // Test that tuple(std::allocator_arg, Alloc, Types const&...) allows implicit
65 std::tuple<ImplicitCopy> testImplicitCopy1() {
70 std::tuple<ImplicitCopy> testImplicitCopy2() {
75 std::tuple<ImplicitCopy> testImplicitCopy3() {
84 std::tuple<int*> t = 0;
88 std::tuple<int> t(2)
    [all...]
alloc.pass.cpp 12 // <tuple>
14 // template <class... Types> class tuple;
17 // tuple(allocator_arg_t, const Alloc& a);
23 #include <tuple>
46 std::tuple<> t(std::allocator_arg, A1<int>());
49 std::tuple<int> t(std::allocator_arg, A1<int>());
53 std::tuple<DefaultOnly> t(std::allocator_arg, A1<int>());
58 std::tuple<alloc_first> t(std::allocator_arg, A1<int>(5));
64 std::tuple<alloc_last> t(std::allocator_arg, A1<int>(5));
70 std::tuple<DefaultOnly, alloc_first> t(std::allocator_arg, A1<int>(5))
    [all...]
alloc_const_Types.pass.cpp 10 // <tuple>
12 // template <class... Types> class tuple;
15 // tuple(allocator_arg_t, const Alloc& a, const Types&...);
19 #include <tuple>
32 // Test that tuple(std::allocator_arg, Alloc, Types const&...) allows implicit
34 std::tuple<ImplicitCopy> testImplicitCopy1() {
39 std::tuple<ImplicitCopy> testImplicitCopy2() {
48 std::tuple<int*> t = {std::allocator_arg, std::allocator<void>{}, 0};
51 std::tuple<int> t(std::allocator_arg, A1<int>(), 3);
56 std::tuple<alloc_first> t(std::allocator_arg, A1<int>(5), alloc_first(3))
    [all...]
  /external/icu/icu4c/source/test/intltest/
datadrivennumberformattestsuite.h 51 * @param tuple the test data for current test. The format method can
59 const NumberFormatTestTuple &tuple,
67 * @param tuple the test data for current test. The format method can
80 const NumberFormatTestTuple &tuple,
94 const NumberFormatTestTuple &tuple,
101 const NumberFormatTestTuple &tuple,
109 const NumberFormatTestTuple &tuple,
117 const NumberFormatTestTuple &tuple,
139 const NumberFormatTestTuple &tuple,
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.helper/
tuple_element.pass.cpp 10 // <tuple>
12 // template <class... Types> class tuple;
15 // class tuple_element<I, tuple<Types...> >
23 #include <tuple>
45 test<std::tuple<int>, 0, int>();
46 test<std::tuple<char, int>, 0, char>();
47 test<std::tuple<char, int>, 1, int>();
48 test<std::tuple<int*, char, int>, 0, int*>();
49 test<std::tuple<int*, char, int>, 1, char>();
50 test<std::tuple<int*, char, int>, 2, int>()
    [all...]
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.apply/
apply_extended_types.pass.cpp 12 // <tuple>
20 #include <tuple>
84 class Tuple, class ConstTuple
108 Tuple t{a};
171 Tuple t{a};
196 class Tuple, class ConstTuple
217 Tuple t{a, 2};
281 class Tuple, class ConstTuple
302 Tuple t{a, 1, 1};
368 std::tuple<A_int_0 &>, std::tuple<A_int_0 const &
    [all...]
  /development/vndk/tools/definition-tool/tests/
utils.py 25 def add_lib(self, partition, klass, name, dt_needed=tuple(),
26 exported_symbols=tuple(), imported_symbols=tuple(),
46 def add_lib32(self, partition, name, dt_needed=tuple(),
47 exported_symbols=tuple(), imported_symbols=tuple(),
53 def add_lib64(self, partition, name, dt_needed=tuple(),
54 exported_symbols=tuple(), imported_symbols=tuple(),
60 def add_multilib(self, partition, name, dt_needed=tuple(),
    [all...]
  /external/libchrome/ipc/
ipc_message_templates_impl.h 8 #include <tuple>
15 explicit ParamDeserializer(const std::tuple<Ts&...>& out) : out_(out) {}
22 std::tuple<Ts&...> out_;
26 MessageT<Meta, std::tuple<Ins...>, void>::MessageT(Routing routing,
33 bool MessageT<Meta, std::tuple<Ins...>, void>::Read(const Message* msg,
40 void MessageT<Meta, std::tuple<Ins...>, void>::Log(std::string* name,
53 MessageT<Meta, std::tuple<Ins...>, std::tuple<Outs...>>::MessageT(
66 bool MessageT<Meta, std::tuple<Ins...>, std::tuple<Outs...>>::ReadSendParam
    [all...]
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/
TupleFunction.pass.cpp 16 #include <tuple>
  /external/skia/src/core/
SkMaskBlurFilter.h 13 #include <tuple>
  /external/skqp/src/core/
SkMaskBlurFilter.h 13 #include <tuple>
  /external/tensorflow/tensorflow/core/framework/
queue_interface.h 33 typedef std::vector<Tensor> Tuple;
35 typedef std::function<void(const Tuple&)> CallbackWithTuple;
37 virtual Status ValidateTuple(const Tuple& tuple) = 0;
38 virtual Status ValidateManyTuple(const Tuple& tuple) = 0;
41 // enqueue the tuple of tensors into the queue, and returns immediately. The
43 virtual void TryEnqueue(const Tuple& tuple, OpKernelContext* ctx,
48 virtual void TryEnqueueMany(const Tuple& tuple, OpKernelContext* ctx
    [all...]
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
p14.cpp 4 template<typename ...Types> struct tuple;
26 typedef tuple<T(Types, ...)...> template_arg_expansion_1;
  /external/pdfium/xfa/fxfa/parser/
cxfa_occur.h 10 #include <tuple>
28 std::tuple<int32_t, int32_t, int32_t> GetOccurInfo();
  /external/tensorflow/tensorflow/stream_executor/gpu/
gpu_diagnostics.h 19 #include <tuple>
29 using DriverVersion = std::tuple<int, int, int>;
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
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/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.elem/
get_const.pass.cpp 10 // <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>
31 typedef std::tuple<int> T;
36 typedef std::tuple<std::string, int> T;
43 typedef std::tuple<double, int> T;
49 typedef std::tuple<Empty> T;
56 typedef std::tuple<double&, std::string, int> T
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
fifo_queue.cc 41 void FIFOQueue::DequeueLocked(OpKernelContext* ctx, Tuple* tuple) {
43 (*tuple).reserve(num_components());
45 (*tuple).push_back(*queues_[i][0].AccessTensor(ctx));
50 void FIFOQueue::TryEnqueue(const Tuple& tuple, OpKernelContext* ctx,
62 [tuple, this](Attempt* attempt) EXCLUSIVE_LOCKS_REQUIRED(mu_) {
70 queues_[i].push_back(PersistentTensor(tuple[i]));
88 Status FIFOQueue::GetElementComponentFromBatch(const FIFOQueue::Tuple& tuple,
206 Tuple tuple; local
    [all...]
priority_queue.cc 62 void PriorityQueue::DequeueLocked(OpKernelContext* ctx, Tuple* tuple) {
64 (*tuple).reserve(num_components());
67 (*tuple).push_back(*persistent_tensor.AccessTensor(ctx));
71 void PriorityQueue::TryEnqueue(const Tuple& tuple, OpKernelContext* ctx,
83 [tuple, this](Attempt* attempt) EXCLUSIVE_LOCKS_REQUIRED(mu_) {
90 if (!TensorShapeUtils::IsScalar(tuple[0].shape())) {
94 tuple[0].shape().DebugString()));
97 const int64 priority = tuple[0].scalar<int64>()()
249 Tuple tuple; local
    [all...]
  /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...]

Completed in 765 milliseconds

1 2 34 5 6 7 8 91011>>