Searched defs:RawValue (Results 1 - 7 of 7) sorted by relevance

/external/python/cpython2/Lib/multiprocessing/
H A D__init__.py52 'RawValue', 'RawArray', 'SUBDEBUG', 'SUBWARNING',
234 def RawValue(typecode_or_type, *args): function
238 from multiprocessing.sharedctypes import RawValue namespace
239 return RawValue(typecode_or_type, *args)
H A Dsharedctypes.py42 __all__ = ['RawValue', 'RawArray', 'Value', 'Array', 'copy', 'synchronized']
71 def RawValue(typecode_or_type, *args): function
104 obj = RawValue(typecode_or_type, *args)
/external/python/cpython3/Lib/multiprocessing/
H A Dsharedctypes.py19 __all__ = ['RawValue', 'RawArray', 'Value', 'Array', 'copy', 'synchronized']
43 def RawValue(typecode_or_type, *args): function
73 obj = RawValue(typecode_or_type, *args)
H A Dcontext.py121 def RawValue(self, typecode_or_type, *args): member in class:BaseContext
123 from .sharedctypes import RawValue namespace
124 return RawValue(typecode_or_type, *args)
/external/kotlinc/lib/
H A Dandroid-extensions-runtime.jarMETA-INF/ META-INF/MANIFEST.MF kotlinx/ kotlinx/android/ kotlinx/android/extensions/ kotlinx/android/extensions/LayoutContainer ...
H A Dandroid-extensions-compiler.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/jetbrains/ org/jetbrains/kotlin/ org/jetbrains/kotlin/android/ ...
/external/python/cpython3/Lib/test/
H A D_test_multiprocessing.py1475 values = [self.RawValue(code, value)
1516 arr5 = self.RawValue('i', 5)
3898 RawValue = staticmethod(multiprocessing.RawValue) variable in class:ProcessesMixin

Completed in 167 milliseconds