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

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
__init__.py 234 def RawValue(typecode_or_type, *args):
239 return RawValue(typecode_or_type, *args)
241 def RawArray(typecode_or_type, size_or_initializer):
246 return RawArray(typecode_or_type, size_or_initializer)
248 def Value(typecode_or_type, *args, **kwds):
253 return Value(typecode_or_type, *args, **kwds)
255 def Array(typecode_or_type, size_or_initializer, **kwds):
260 return Array(typecode_or_type, size_or_initializer, **kwds)
sharedctypes.py 66 def RawValue(typecode_or_type, *args):
70 type_ = typecode_to_type.get(typecode_or_type, typecode_or_type)
76 def RawArray(typecode_or_type, size_or_initializer):
80 type_ = typecode_to_type.get(typecode_or_type, typecode_or_type)
92 def Value(typecode_or_type, *args, **kwds):
99 obj = RawValue(typecode_or_type, *args)
108 def Array(typecode_or_type, size_or_initializer, **kwds):
115 obj = RawArray(typecode_or_type, size_or_initializer
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
__init__.py 234 def RawValue(typecode_or_type, *args):
239 return RawValue(typecode_or_type, *args)
241 def RawArray(typecode_or_type, size_or_initializer):
246 return RawArray(typecode_or_type, size_or_initializer)
248 def Value(typecode_or_type, *args, **kwds):
253 return Value(typecode_or_type, *args, **kwds)
255 def Array(typecode_or_type, size_or_initializer, **kwds):
260 return Array(typecode_or_type, size_or_initializer, **kwds)
sharedctypes.py 66 def RawValue(typecode_or_type, *args):
70 type_ = typecode_to_type.get(typecode_or_type, typecode_or_type)
76 def RawArray(typecode_or_type, size_or_initializer):
80 type_ = typecode_to_type.get(typecode_or_type, typecode_or_type)
92 def Value(typecode_or_type, *args, **kwds):
99 obj = RawValue(typecode_or_type, *args)
108 def Array(typecode_or_type, size_or_initializer, **kwds):
115 obj = RawArray(typecode_or_type, size_or_initializer
    [all...]

Completed in 65 milliseconds