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

1 2 34 5 6 7 8 91011

  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/extensions/compactnotation/
CompactConstructor.java 140 NodeTuple tuple = list.get(0); local
141 Node key = tuple.getKeyNode();
  /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/snakeyaml/src/main/java/org/yaml/snakeyaml/serializer/
Serializer.java 166 ImplicitTuple tuple = new ImplicitTuple(node.getTag().equals(detectedTag), node local
168 ScalarEvent event = new ScalarEvent(tAlias, node.getTag().getValue(), tuple,
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
gtest-tuple.h 34 // 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<T##0, T##1, T##2, T##3, void, void, void,
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/tensorflow/tensorflow/compiler/tf2xla/
xla_compiler.cc 402 // create a tuple/get-tuple-element combination so that sharding
405 handle = builder->GetTupleElement(builder->Tuple({handle}), 0);
414 builder->Tuple(elems);
520 xla::ComputationDataHandle tuple; local
533 tuple = builder->Parameter(0, (*input_shapes)[0], "arg_tuple");
535 tuple = builder->Parameter(0, (*input_shapes)[0], "arg_tuple");
542 arg_handles[i] = builder->GetTupleElement(tuple, i);
  /external/tensorflow/tensorflow/compiler/xla/python/
numpy_bridge.cc 52 case TUPLE:
86 return TUPLE;
217 if (element_type == TUPLE) {
222 "Return value of Shape method tuple_shapes() is not a tuple");
241 return error("Return value of Shape method dimensions() is not a tuple");
245 "Return value of Shape method minor_to_major() is neither a tuple "
353 PyObject* tuple = PyTuple_New(num_elements); local
356 tuple, i, PyObjectFromXlaLiteral(LiteralView::Create(literal, {i})));
358 return tuple;
400 "Non-tuple or Numpy array encountered in conversion to XLA literal.")
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_computation_test.cc 268 // Test that DeepCopyInstruction properly copies a tuple.
274 auto tuple = builder.AddInstruction( local
279 auto tuple_copy = computation->DeepCopyInstruction(tuple).ValueOrDie();
281 EXPECT_THAT(tuple_copy, op::Tuple(op::Copy(op::GetTupleElement(tuple)),
282 op::Copy(op::GetTupleElement(tuple))));
313 // Test that DeepCopyInstruction properly copies elements of a tuple as
320 auto tuple = builder.AddInstruction( local
326 ShapeTree<bool> indices_to_copy(tuple->shape(), /*init_value=*/true);
327 ShapeTree<HloInstruction*> copies_added(tuple->shape()
    [all...]
hlo_cost_analysis_test.cc 348 // tuple = Tuple({sub, sub, mul, C1})
369 auto tuple = HloInstruction::CreateTuple({sub, sub, mul, c1}); local
431 auto tuple = builder.Tuple({x, y}); local
hlo_rematerialization_test.cc 515 // {F32[1024], F32[1024]} %tuple = tuple(%bcast, %add_2)
516 // F32[1024] %gte = GetTupleElememt(%tuple, 0)
561 auto tuple = local
564 vec1024_shape_, tuple, indirectly_used ? 0 : 1));
liveness_util_test.cc 58 auto tuple = builder.AddInstruction(HloInstruction::CreateParameter( local
59 0, ShapeUtil::MakeTupleShape({elem_shape, elem_shape}), "tuple"));
61 HloInstruction::CreateGetTupleElement(elem_shape, tuple, 0));
63 HloInstruction::CreateGetTupleElement(elem_shape, tuple, 1));
71 EXPECT_TRUE(DoesNotUseOperandBuffer(tuple, {0}, gte0, *points_to_analysis_));
72 EXPECT_TRUE(DoesNotUseOperandBuffer(tuple, {1}, gte1, *points_to_analysis_));
73 EXPECT_FALSE(DoesNotUseOperandBuffer(tuple, {}, gte0, *points_to_analysis_));
74 EXPECT_FALSE(DoesNotUseOperandBuffer(tuple, {}, gte1, *points_to_analysis_));
76 EXPECT_TRUE(DoesNotUseOperandBuffer(tuple, {0}, gte0, *dataflow_analysis_));
77 EXPECT_TRUE(DoesNotUseOperandBuffer(tuple, {1}, gte1, *dataflow_analysis_))
86 auto tuple = builder.AddInstruction(HloInstruction::CreateParameter( local
200 auto tuple = builder.AddInstruction(HloInstruction::CreateParameter( local
    [all...]
  /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)
517 typename StagingMap<Ordered>::OptionalTuple tuple; variable
579 typename StagingMap<Ordered>::Tuple tuple; variable
641 typename StagingMap<Ordered>::Tuple tuple; variable
702 typename StagingMap<Ordered>::Tuple tuple; variable
    [all...]
  /external/v8/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; \
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<T##0, void, void, void, void, void, void,
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/
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...]
  /frameworks/base/core/java/android/animation/
StateListAnimator.java 51 private ArrayList<Tuple> mTuples = new ArrayList<Tuple>();
52 private Tuple mLastMatch = null;
83 Tuple tuple = new Tuple(specs, animator); local
84 tuple.mAnimator.addListener(mAnimatorListener);
85 mTuples.add(tuple);
139 clone.mTuples = new ArrayList<Tuple>(mTuples.size());
147 final Tuple tuple = mTuples.get(i) local
167 final Tuple tuple = mTuples.get(i); local
    [all...]
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/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...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/gtest-1.7.0/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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
_codecsmodule.c 48 a tuple of functions (encoder, decoder, stream_reader, stream_writer)\n\
63 Looks up a codec tuple in the Python codec registry and returns\n\
352 It returns a tuple (unicode, bytesread, byteorder) with byteorder
364 PyObject *unicode, *tuple; local
377 tuple = Py_BuildValue("Oni", unicode, consumed, byteorder);
379 return tuple;
454 It returns a tuple (unicode, bytesread, byteorder) with byteorder
466 PyObject *unicode, *tuple; local
479 tuple = Py_BuildValue("Oni", unicode, consumed, byteorder);
481 return tuple;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
weakrefobject.c 942 PyObject *tuple; local
945 tuple = PyTuple_New(count * 2);
946 if (tuple == NULL) {
957 PyTuple_SET_ITEM(tuple, i * 2, (PyObject *) current);
958 PyTuple_SET_ITEM(tuple, i * 2 + 1, current->wr_callback);
968 PyObject *callback = PyTuple_GET_ITEM(tuple, i * 2 + 1);
970 /* The tuple may have slots left to NULL */
972 PyObject *item = PyTuple_GET_ITEM(tuple, i * 2);
976 Py_DECREF(tuple);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_codecsmodule.c 48 a tuple of functions (encoder, decoder, stream_reader, stream_writer)\n\
63 Looks up a codec tuple in the Python codec registry and returns\n\
352 It returns a tuple (unicode, bytesread, byteorder) with byteorder
364 PyObject *unicode, *tuple; local
377 tuple = Py_BuildValue("Oni", unicode, consumed, byteorder);
379 return tuple;
454 It returns a tuple (unicode, bytesread, byteorder) with byteorder
466 PyObject *unicode, *tuple; local
479 tuple = Py_BuildValue("Oni", unicode, consumed, byteorder);
481 return tuple;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
weakrefobject.c 935 PyObject *tuple; local
938 tuple = PyTuple_New(count * 2);
939 if (tuple == NULL) {
951 PyTuple_SET_ITEM(tuple, i * 2, (PyObject *) current);
952 PyTuple_SET_ITEM(tuple, i * 2 + 1, current->wr_callback);
962 PyObject *callback = PyTuple_GET_ITEM(tuple, i * 2 + 1);
964 /* The tuple may have slots left to NULL */
966 PyObject *item = PyTuple_GET_ITEM(tuple, i * 2);
970 Py_DECREF(tuple);
  /external/ImageMagick/MagickCore/
color.c 1912 tuple[MagickPathExtent]; local
    [all...]
histogram.c 1005 tuple[MagickPathExtent]; local
    [all...]
identify.c 953 tuple[MagickPathExtent]; local
992 tuple[MagickPathExtent]; local
    [all...]
  /external/libxml2/python/
types.c 486 PyObject *tuple; local
491 tuple = PyTuple_New(2);
492 PyTuple_SetItem(tuple, 0, node);
493 PyTuple_SetItem(tuple, 1, indexIntoNode);
495 ret = tuple;
507 PyObject *tuple; local
515 tuple = PyTuple_New(2);
516 PyTuple_SetItem(tuple, 0, node);
517 PyTuple_SetItem(tuple, 1, indexIntoNode);
519 PyList_SetItem(list, 0, tuple);
525 PyObject *tuple; local
    [all...]
  /external/python/cpython2/Modules/
_codecsmodule.c 48 a tuple of functions (encoder, decoder, stream_reader, stream_writer)\n\
63 Looks up a codec tuple in the Python codec registry and returns\n\
352 It returns a tuple (unicode, bytesread, byteorder) with byteorder
364 PyObject *unicode, *tuple; local
377 tuple = Py_BuildValue("Oni", unicode, consumed, byteorder);
379 return tuple;
454 It returns a tuple (unicode, bytesread, byteorder) with byteorder
466 PyObject *unicode, *tuple; local
479 tuple = Py_BuildValue("Oni", unicode, consumed, byteorder);
481 return tuple;
    [all...]

Completed in 1375 milliseconds

1 2 34 5 6 7 8 91011