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

<<21222324252627282930>>

  /external/python/cpython2/Demo/classes/
Range.py 10 values and return in a tuple"""
19 return tuple(int(x) for x in arglist)
  /external/python/cpython2/Lib/ctypes/test/
test_returnfuncptrs.py 37 # _CFuncPtr instances are now callable with a tuple argument
47 class BadSequence(tuple):
55 # _CFuncPtr instances are now callable with a tuple argument
  /external/python/cpython2/Lib/
dummy_thread.py 31 tuple and ``kwargs`` is a dictionary. If an exception is raised
40 if type(args) != type(tuple()):
41 raise TypeError("2nd arg must be a tuple")
  /external/python/cpython2/Lib/lib2to3/fixes/
fix_has_key.py 103 new = pytree.Node(syms.power, (new,) + tuple(after))
  /external/python/cpython2/Lib/test/
test___future__.py 35 a(isinstance(t, tuple), "%s isn't tuple" % name)
36 e(len(t), 5, "%s isn't 5-tuple" % name)
  /external/python/cpython2/Lib/xml/dom/
domreg.py 99 return tuple(features)
minicompat.py 12 # StringTypes -- tuple of defined string types
75 class EmptyNodeList(tuple):
  /external/python/cpython3/Lib/
_dummy_thread.py 33 tuple and ``kwargs`` is a dictionary. If an exception is raised
42 if type(args) != type(tuple()):
43 raise TypeError("2nd arg must be a tuple")
copy.py 113 for t in (type(None), int, float, bool, complex, str, tuple,
221 # We're not going to put the tuple in the memo, but it's still important we
222 # check for it, in case the tuple contains recursive mutable structures.
229 y = tuple(y)
234 d[tuple] = _deepcopy_tuple
284 if isinstance(state, tuple) and len(state) == 2:
  /external/python/cpython3/Lib/lib2to3/fixes/
fix_has_key.py 102 new = pytree.Node(syms.power, (new,) + tuple(after))
  /external/python/cpython3/Lib/test/
test___future__.py 34 a(isinstance(t, tuple), "%s isn't tuple" % name)
35 e(len(t), 5, "%s isn't 5-tuple" % name)
  /external/python/cpython3/Lib/xml/dom/
domreg.py 99 return tuple(features)
  /external/python/oauth2client/scripts/
fetch_gae_sdk.py 38 return tuple(int(x) for x in version_string.split('.'))
  /external/scapy/scapy/
base_classes.py 29 elif (isinstance(values, tuple) and (2 <= len(values) <= 3) and \
34 + tuple(int(v) for v in values[2:])))]
131 self.cmpt.append(tuple(map(int, i.split("-"))))
140 yield self.fmt % tuple(ii)
  /external/skia/experimental/svg/model/
SkSVGCircle.cpp 49 std::tuple<SkPoint, SkScalar> SkSVGCircle::resolve(const SkSVGLengthContext& lctx) const {
SkSVGLine.cpp 58 std::tuple<SkPoint, SkPoint> SkSVGLine::resolve(const SkSVGLengthContext& lctx) const {
  /external/skia/src/utils/
SkCallableTraits.h 18 using type = typename std::tuple_element<N, std::tuple<Args...>>::type;
  /external/skqp/experimental/svg/model/
SkSVGCircle.cpp 49 std::tuple<SkPoint, SkScalar> SkSVGCircle::resolve(const SkSVGLengthContext& lctx) const {
SkSVGLine.cpp 58 std::tuple<SkPoint, SkPoint> SkSVGLine::resolve(const SkSVGLengthContext& lctx) const {
  /external/skqp/src/utils/
SkCallableTraits.h 18 using type = typename std::tuple_element<N, std::tuple<Args...>>::type;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/IPO/
DeadArgumentElimination.h 30 #include <tuple>
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/lit/lit/
ShUtil.py 68 assert isinstance(tok, tuple) and len(tok) == 1
210 if isinstance(tok, tuple):
228 assert isinstance(tok, tuple)
255 assert isinstance(operator, tuple) and len(operator) == 1
  /external/tensorflow/tensorflow/compiler/xla/service/llvm_ir/
fused_ir_emitter.h 53 // arrays in the tuple. It follows that the arrays in the tuple must have the
79 // Emits the ir value for each element in the tuple.
80 Status HandleTuple(HloInstruction* tuple) override;
134 // instruction produces non-tuple result.
138 // Map from tuple-result-producing GetTupleELement instructions to functions
  /external/tensorflow/tensorflow/compiler/xla/service/
logical_buffer_analysis.h 59 Status HandleTuple(HloInstruction* tuple) override;
  /external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/
mvn_full_covariance_test.py 113 self.assertEqual((2,), tuple(mvn.event_shape.as_list()))
114 self.assertEqual((3, 5), tuple(mvn.batch_shape.as_list()))
117 self.assertEqual((2,), tuple(mvn.event_shape_tensor().eval()))
118 self.assertEqual((3, 5), tuple(mvn.batch_shape_tensor().eval()))

Completed in 2153 milliseconds

<<21222324252627282930>>