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

1 2 3 4 5 6 78 91011>>

  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
test_lazy_sfinae.pass.cpp 10 // <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<NonConstCopyable, BlowsUpOnConstCopy<int>> t(v, b)
    [all...]
move.pass.cpp 10 // <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<MoveOnly, MoveOnly, MoveOnly> T
    [all...]
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.creation/
tie.pass.cpp 10 // <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/issues/issue139/
UniqueKeyTest.java 48 for (NodeTuple tuple : nodeValue) {
49 Node keyNode = tuple.getKeyNode();
50 Node valueNode = tuple.getValueNode();
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/partialconstruct/
FragmentComposer.java 42 for (NodeTuple tuple : root.getValue()) {
43 Node keyNode = tuple.getKeyNode();
46 return tuple.getValueNode();
  /external/tensorflow/tensorflow/core/kernels/
map_stage_op.cc 84 using Tuple = std::vector<Tensor>;
145 // Get number of bytes in the tuple
146 std::size_t get_tuple_bytes(const Tuple& tuple) {
147 return std::accumulate(tuple.begin(), tuple.end(),
154 // Get number of bytes in the incomplete tuple
155 std::size_t get_tuple_bytes(const OptionalTuple& tuple) {
157 tuple.begin(), tuple.end(), static_cast<std::size_t>(0)
519 typename StagingMap<Ordered>::OptionalTuple tuple; variable
581 typename StagingMap<Ordered>::Tuple tuple; variable
642 typename StagingMap<Ordered>::Tuple tuple; variable
702 typename StagingMap<Ordered>::Tuple tuple; variable
    [all...]
padding_fifo_queue.h 51 Status ValidateManyTuple(const Tuple& tuple) override;
52 Status ValidateTuple(const Tuple& tuple) override;
77 static Status GetElementComponent(const PaddingFIFOQueue::Tuple& tuple,
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/wpa_supplicant_8/wpa_supplicant/examples/
dbus-listen-preq.py 21 print('%.2x:%.2x:%.2x:%.2x:%.2x:%.2x' % tuple(args['addr']),
24 print('-> %.2x:%.2x:%.2x:%.2x:%.2x:%.2x' % tuple(args['dst']),
27 print('(bssid %.2x:%.2x:%.2x:%.2x:%.2x:%.2x)' % tuple(args['dst']),
  /external/libaom/libaom/test/
codec_factory.h 57 ::testing::tuple<const libaom_test::CodecFactory *, T1> > {};
62 ::testing::tuple<const libaom_test::CodecFactory *, T1, T2> > {};
67 ::testing::tuple<const libaom_test::CodecFactory *, T1, T2, T3> > {};
71 : public ::testing::TestWithParam< ::testing::tuple<
76 : public ::testing::TestWithParam< ::testing::tuple<
  /external/tensorflow/tensorflow/python/autograph/utils/
py_func.py 49 return_dtypes: None, individual of tuple/list of DType or MatchDType, the
54 args: Positional arguments for f, as list or tuple.
73 arg_is_tensor = tuple(map(tensor_util.is_tensor, args))
92 kwarg_keys = tuple(kwargs.keys())
113 elif isinstance(return_dtypes, (list, tuple)):
114 return_dtypes = tuple(
121 f_args = tuple(tensor_args[tensor_args_idx[i]] if arg_is_tensor[i] else a
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
p4.cpp 3 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/gemmlowp/internal/
dispatch_gemm_shape.h 104 inline std::tuple<> TransposeTuple(const std::tuple<>& t) { return t; }
107 std::tuple<TransposeType<T0>> TransposeTuple(const std::tuple<T0>& t) {
112 std::tuple<TransposeType<T0>, TransposeType<T1>> TransposeTuple(
113 const std::tuple<T0, T1>& t) {
118 std::tuple<TransposeType<T0>, TransposeType<T1>, TransposeType<T2>>
119 TransposeTuple(const std::tuple<T0, T1, T2>& t) {
125 std::tuple<TransposeType<T0>, TransposeType<T1>, TransposeType<T2>,
127 TransposeTuple(const std::tuple<T0, T1, T2, T3>& t)
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
tuple_points_to_analysis_test.cc 129 auto tuple = builder.AddInstruction( local
138 EXPECT_TRUE(points_to_analysis_->GetPointsToSet(tuple).IsDistinct());
146 EXPECT_EQ(3, points_to_analysis_->GetPointsToSet(tuple).size());
147 EXPECT_FALSE(points_to_analysis_->GetPointsToSet(tuple).IsAmbiguous());
148 EXPECT_THAT(points_to_analysis_->GetPointsToSet(tuple).tuple_sources({}),
149 UnorderedElementsAre(tuple));
152 points_to_analysis_->GetPointsToSet(tuple).CreateFlattenedSet(),
153 {constant1, constant2, tuple});
155 points_to_analysis_->GetPointsToSet(tuple).element({}), {tuple});
187 auto tuple = builder.AddInstruction( local
248 auto tuple = builder.AddInstruction( local
289 auto tuple = builder.AddInstruction( local
312 auto tuple = builder.AddInstruction( local
544 auto tuple = local
603 auto tuple = builder.AddInstruction( local
854 auto tuple = builder.AddInstruction(HloInstruction::CreateParameter( local
877 auto tuple = builder.AddInstruction(HloInstruction::CreateParameter( local
971 auto tuple = builder.AddInstruction(HloInstruction::CreateParameter( local
    [all...]
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.apply/
make_from_tuple.pass.cpp 12 // <tuple>
14 // template <class T, class Tuple> constexpr T make_from_tuple(Tuple&&);
16 #include <tuple>
29 template <class Tuple>
34 Tuple args;
40 template <template <class ...> class Tuple, class ...Types>
41 struct ConstructibleFromTuple<Tuple<Types...>> {
47 Tuple<std::decay_t<Types>...> args;
62 template <class Tuple>
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/representer/
Representer.java 84 NodeTuple tuple = representJavaBeanProperty(javaBean, property, memberValue, local
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(); local
203 Node keyNode = tuple.getKeyNode();
214 for (NodeTuple tuple : mnode.getValue()) {
215 resetTag(keyType, tuple.getKeyNode());
216 resetTag(valueType, tuple.getValueNode())
    [all...]
  /external/tensorflow/tensorflow/python/autograph/pyct/
ast_util.py 42 elif isinstance(node, tuple):
43 return tuple(self.copy(n) for n in node)
45 # Assuming everything that's not an AST, list or tuple is a value type
110 elif isinstance(node, tuple):
111 return tuple(renamer.visit(n) for n in node)
144 if isinstance(p, (list, tuple)) and len(p) == 1:
174 if isinstance(v, (list, tuple)):
175 if not isinstance(p, (list, tuple)) or len(v) != len(p):
236 targets: Union[List[ast.AST, ...], Tuple[ast.AST, ...], ast.AST, should be
242 if not isinstance(targets, (list, tuple))
    [all...]
  /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/grpc-grpc/src/python/grpcio/grpc/_cython/_cygrpc/
arguments.pxd.pxi 25 cdef tuple _wrap_grpc_arg(grpc_arg arg)
28 cdef grpc_arg _unwrap_grpc_arg(tuple wrapped_arg)
40 cdef readonly tuple _arguments
  /external/libcxx/test/std/containers/unord/unord.map/unord.map.elem/
index.pass.cpp 127 cc->expect<std::piecewise_construct_t const&, std::tuple<Key const&>&&, std::tuple<>&&>();
139 cc->expect<std::piecewise_construct_t const&, std::tuple<Key const&>&&, std::tuple<>&&>();
151 cc->expect<std::piecewise_construct_t const&, std::tuple<Key &&>&&, std::tuple<>&&>();
  /external/libnetfilter_conntrack/include/internal/
prototypes.h 11 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/
FuzzerFnAdapterUnittest.cpp 12 bool Unpack(std::tuple<Args...> *Tuple, std::initializer_list<uint8_t> data) {
14 return Unpack(V.data(), V.size(), Tuple);
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;
  /device/google/cuttlefish_common/tools/play_audio/
play_audio.cpp 26 #include <tuple>
49 std::tuple<std::uint16_t, std::uint16_t> RecvHeader(cfp::ClientSocket* conn) {
59 std::tuple<std::uint32_t, std::vector<unsigned char>> RecvEncodedAudio(
  /external/drm_hwcomposer/
drmdisplaycompositor.h 29 #include <tuple>
60 std::tuple<uint32_t, uint32_t, int> GetActiveModeResolution();
97 std::tuple<int, uint32_t> CreateModeBlob(const DrmMode &mode);
  /external/fonttools/Lib/fontTools/misc/
symfont.py 14 X = tuple(sp.symbols('x:%d'%(n+1), real=True))
15 Y = tuple(sp.symbols('y:%d'%(n+1), real=True))
16 P = tuple(zip(*(sp.symbols('p:%d[%s]'%(n+1,w), real=True) for w in '01')))
17 C = tuple(sp.symbols('c:%d'%(n+1), real=False))
23 this = tuple(last[j-1]+last[j] for j in range(len(last)))+(0,)
25 BinomialCoefficient = tuple(tuple(item[:-1]) for item in BinomialCoefficient)
28 BernsteinPolynomial = tuple(
29 tuple(c * t**i * (1-t)**(n-i) for i,c in enumerate(coeffs))
32 BezierCurve = tuple(
    [all...]

Completed in 3471 milliseconds

1 2 3 4 5 6 78 91011>>