HomeSort by relevance Sort by last modified time
    Searched refs:size_or_initializer (Results 1 - 4 of 4) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
sharedctypes.py 76 def RawArray(typecode_or_type, size_or_initializer):
81 if isinstance(size_or_initializer, (int, long)):
82 type_ = type_ * size_or_initializer
87 type_ = type_ * len(size_or_initializer)
89 result.__init__(*size_or_initializer)
108 def Array(typecode_or_type, size_or_initializer, **kwds):
115 obj = RawArray(typecode_or_type, size_or_initializer)
__init__.py 241 def RawArray(typecode_or_type, size_or_initializer):
246 return RawArray(typecode_or_type, size_or_initializer)
255 def Array(typecode_or_type, size_or_initializer, **kwds):
260 return Array(typecode_or_type, size_or_initializer, **kwds)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
sharedctypes.py 76 def RawArray(typecode_or_type, size_or_initializer):
81 if isinstance(size_or_initializer, (int, long)):
82 type_ = type_ * size_or_initializer
87 type_ = type_ * len(size_or_initializer)
89 result.__init__(*size_or_initializer)
108 def Array(typecode_or_type, size_or_initializer, **kwds):
115 obj = RawArray(typecode_or_type, size_or_initializer)
__init__.py 241 def RawArray(typecode_or_type, size_or_initializer):
246 return RawArray(typecode_or_type, size_or_initializer)
255 def Array(typecode_or_type, size_or_initializer, **kwds):
260 return Array(typecode_or_type, size_or_initializer, **kwds)

Completed in 425 milliseconds