HomeSort by relevance Sort by last modified time
    Searched defs:tuple (Results 1 - 25 of 165) sorted by null

1 2 3 4 5 6 7

  /external/clang/test/Parser/
PR11000.cpp 4 class tuple<> class
7 tuple(allocator_arg_t, const _Alloc&) {} function in class:tuple
  /external/clang/test/Index/
usrs-cxx0x.cpp 2 struct tuple { }; struct
4 void f(tuple<int, float, double>);
13 // CHECK: usrs-cxx0x.cpp c:@ST>1#pT@tuple Extent=[1:1 - 2:17]
14 // CHECK: usrs-cxx0x.cpp c:@F@f#$@S@tuple>#p3Ifd# Extent=[4:1 - 4:34]
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
parameter-matching.cpp 31 template<typename ...> struct tuple { }; struct in namespace:rdar8859985
37 X(tuple<Args1...>, int_tuple<Indices1...>);
42 X<T>::X(tuple<Args1...>, int_tuple<Indices1...>) {}
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/parser/
VersionTagsTupleTest.java 27 VersionTagsTuple tuple = new VersionTagsTuple(Version.V1_1, new HashMap<String, String>()); local
28 assertEquals("VersionTagsTuple<Version: 1.1, {}>", tuple.toString());
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/resolver/
ResolverTupleTest.java 27 ResolverTuple tuple = new ResolverTuple(new Tag("dice"), Pattern.compile("\\d+")); local
28 assertEquals("Tuple tag=dice regexp=\\d+", tuple.toString());
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
implicit_deduction_guides.pass.cpp 18 // <tuple>
20 // Test that the constructors offered by std::tuple are formulated
24 #include <tuple>
36 // (1) tuple(const Types&...) -> tuple<Types...>
37 // (2) explicit tuple(const Types&...) -> tuple<Types...>
38 // (3) tuple(AT, A const&, Types const&...) -> tuple<Types...>
39 // (4) explicit tuple(AT, A const&, Types const&...) -> tuple<Types...
51 ASSERT_SAME_TYPE(decltype(t1), std::tuple<int>); member in class:std
53 ASSERT_SAME_TYPE(decltype(t2), std::tuple<int, double, decltype(nullptr)>); member in class:std
60 ASSERT_SAME_TYPE(decltype(t1), std::tuple<T>); member in class:std
64 ASSERT_SAME_TYPE(decltype(t2), std::tuple<T, long, T>); member in class:std
69 ASSERT_SAME_TYPE(decltype(t1), std::tuple<int>); member in class:std
72 ASSERT_SAME_TYPE(decltype(t2), std::tuple<int, double, int>); member in class:std
79 ASSERT_SAME_TYPE(decltype(t1), std::tuple<T>); member in class:std
83 ASSERT_SAME_TYPE(decltype(t2), std::tuple<T, long, T>); member in class:std
127 ASSERT_SAME_TYPE(decltype(t1), std::tuple<>); member in class:std
131 ASSERT_SAME_TYPE(decltype(t1), std::tuple<>); member in class:std
136 ASSERT_SAME_TYPE(decltype(t1), std::tuple<>); member in class:std
140 ASSERT_SAME_TYPE(decltype(t1), std::tuple<>); member in class:std
145 ASSERT_SAME_TYPE(decltype(t1), std::tuple<>); member in class:std
149 ASSERT_SAME_TYPE(decltype(t1), std::tuple<>); member in class:std
    [all...]
PR31384.pass.cpp 13 // <tuple>
15 // template <class TupleLike> tuple(TupleLike&&); // libc++ extension
18 #include <tuple>
34 struct Derived : std::tuple<T> {
35 using std::tuple<T>::tuple;
37 operator std::tuple<U>() && { ++count; return {}; }
42 struct ExplicitDerived : std::tuple<T> {
43 using std::tuple<T>::tuple;
    [all...]
  /external/ImageMagick/coders/
debug.c 175 tuple[MagickPathExtent];
237 (void) FormatLocaleString(tuple,MagickPathExtent,"%.20g,%.20g,%.20g ",
246 (void) ConcatenateMagickString(tuple,black,MagickPathExtent);
255 (void) ConcatenateMagickString(tuple,alpha,MagickPathExtent);
257 (void) WriteBlobString(image,tuple);
170 tuple[MagickPathExtent]; local
  /external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
p9-0x.cpp 48 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/
mangle-variadic-templates.cpp 8 template<typename ...Types> struct tuple { }; struct
50 template<typename ...Types> tuple<Types...> f4() {}
52 template tuple<int, float, double> f4();
  /external/junit/src/main/java/org/junit/runner/
FilterFactories.java 24 String[] tuple; local
27 tuple = filterSpec.split("=", 2);
29 tuple = new String[]{ filterSpec, "" };
32 return createFilter(tuple[0], new FilterFactoryParams(topLevelDescription, tuple[1]));
  /external/mesa3d/src/gallium/state_trackers/clover/util/
tuple.hpp 26 #include <tuple>
29 namespace tuple { namespace in namespace:clover
72 /// Evaluate function \a f with the elements of tuple \a t
92 typedef std::tuple<
105 /// Evaluate function \a f on each element of the tuple \a t and
106 /// return the resulting values as a new tuple.
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/nodes/
NodeTupleTest.java 45 NodeTuple tuple = new NodeTuple(key, value); local
48 tuple.toString());
  /external/tensorflow/tensorflow/compiler/xla/tests/
constants_test.cc 161 // TODO(b/29263943): Support tuple constants.
180 Tuple(&builder, {});
194 auto tuple = Tuple(&b, {Iota(&b, F32, 3), Iota(&b, F32, 1)}); local
195 FullLike(tuple, 10); // Illegal; can't do FullLike on a tuple.
call_test.cc 65 XlaBuilder builder("Tuple");
66 Tuple(&builder, {Parameter(&builder, 0, r0f32_, "x")});
143 auto tuple = LiteralUtil::MakeTuple({&elem}); local
146 ComputeAndCompareTuple(&builder, tuple, {}, ErrorSpec(0.01f));
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
p1-0x.cpp 82 template<typename ...Types> struct tuple { }; struct
85 void pack_not_at_end(tuple<Types...>, Types... values, int);
87 void test_pack_not_at_end(tuple<int*, double*> t2) {
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorSyclTuple.h 17 * Minimal implementation of std::tuple that can be used inside a SYCL kernel.
24 namespace tuple { namespace in namespace:utility
35 /// \struct Tuple
37 /// \ztparam Ts... - the types of the elements that the tuple stores.
40 struct Tuple {};
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.
47 struct Tuple<T, Ts...>
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue60/
SkipBeanTest.java 66 NodeTuple tuple = super.representJavaBeanProperty(javaBean, property, propertyValue, local
68 Node valueNode = tuple.getValueNode();
86 return tuple;
  /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...]
queue_op.cc 76 // Defines an EnqueueOp, the execution of which enqueues a tuple of
82 // - Input 1: 0th element of the tuple.
84 // - Input (1+k): kth element of the tuple.
101 QueueInterface::Tuple tuple; local
106 tuple.push_back(Tcomponent);
109 OP_REQUIRES_OK_ASYNC(ctx, queue->ValidateTuple(tuple), callback);
110 queue->TryEnqueue(tuple, ctx, callback);
114 // component of a tuple of tensors along the 0th dimension, and
120 // - Input 1: 0th element of the tuple
142 QueueInterface::Tuple tuple; local
    [all...]
  /external/clang/test/SemaTemplate/
default-arguments-cxx0x.cpp 30 template <typename T1, typename T2> class tuple { class in namespace:PR16689
33 constexpr tuple() {} function in class:PR16689::tuple
38 auto x = a<tuple<int, int> >();
  /external/icu/icu4c/source/test/intltest/
numfmtdatadriventest.cpp 69 static void adjustDecimalFormat(const NumberFormatTestTuple& tuple, DecimalFormat& fmt,
71 if (tuple.minIntegerDigitsFlag) {
72 fmt.setMinimumIntegerDigits(tuple.minIntegerDigits);
74 if (tuple.maxIntegerDigitsFlag) {
75 fmt.setMaximumIntegerDigits(tuple.maxIntegerDigits);
77 if (tuple.minFractionDigitsFlag) {
78 fmt.setMinimumFractionDigits(tuple.minFractionDigits);
80 if (tuple.maxFractionDigitsFlag) {
81 fmt.setMaximumFractionDigits(tuple.maxFractionDigits);
83 if (tuple.currencyFlag)
458 NumberFormatTestTuple tuple; local
    [all...]
  /external/linux-kselftest/tools/testing/selftests/bpf/
test_sk_lookup_kern.c 21 /* Fill 'tuple' with L3 info, and attempt to find L4. On fail, return NULL. */
62 struct bpf_sock_tuple *tuple; local
70 tuple = get_tuple(data, sizeof(*eth), data_end, eth->h_proto, &ipv4);
71 if (!tuple || tuple + sizeof *tuple > data_end)
74 tuple_len = ipv4 ? sizeof(tuple->ipv4) : sizeof(tuple->ipv6);
75 sk = bpf_sk_lookup_tcp(skb, tuple, tuple_len, BPF_F_CURRENT_NETNS, 0);
84 struct bpf_sock_tuple tuple = {} local
96 struct bpf_sock_tuple tuple = {}; local
111 struct bpf_sock_tuple tuple = {}; local
126 struct bpf_sock_tuple tuple = {}; local
140 struct bpf_sock_tuple tuple = {}; local
149 struct bpf_sock_tuple tuple = {}; local
161 struct bpf_sock_tuple tuple = {}; local
171 struct bpf_sock_tuple tuple = {}; local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
NumberFormatDataDrivenTest.java 128 public String format(DataDrivenNumberFormatTestData tuple) {
129 DecimalFormat fmt = createDecimalFormat(tuple);
130 String actual = fmt.format(toNumber(tuple.format));
131 String expected = tuple.output;
139 public String toPattern(DataDrivenNumberFormatTestData tuple) {
140 DecimalFormat fmt = createDecimalFormat(tuple);
142 if (tuple.toPattern != null) {
143 String expected = tuple.toPattern;
149 if (tuple.toLocalizedPattern != null) {
150 String expected = tuple.toLocalizedPattern
    [all...]

Completed in 804 milliseconds

1 2 3 4 5 6 7