/prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/ |
test_python_api.py | 21 PyString_FromStringAndSize = pythonapi.PyString_FromStringAndSize 29 pythonapi.PyString_FromString.restype = py_object 30 pythonapi.PyString_FromString.argtypes = (c_char_p,) 34 pyob = pythonapi.PyString_FromString(s) 46 pythonapi.PyInt_FromLong.restype = py_object 47 self.assertEqual(pythonapi.PyInt_FromLong(42), 42) 51 pythonapi.PyInt_AsLong.argtypes = (py_object,) 52 pythonapi.PyInt_AsLong.restype = c_long 54 res = pythonapi.PyInt_AsLong(42) 71 PyOS_snprintf = pythonapi.PyOS_snprint [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/ |
test_python_api.py | 21 PyString_FromStringAndSize = pythonapi.PyString_FromStringAndSize 29 pythonapi.PyString_FromString.restype = py_object 30 pythonapi.PyString_FromString.argtypes = (c_char_p,) 34 pyob = pythonapi.PyString_FromString(s) 46 pythonapi.PyInt_FromLong.restype = py_object 47 self.assertEqual(pythonapi.PyInt_FromLong(42), 42) 51 pythonapi.PyInt_AsLong.argtypes = (py_object,) 52 pythonapi.PyInt_AsLong.restype = c_long 54 res = pythonapi.PyInt_AsLong(42) 71 PyOS_snprintf = pythonapi.PyOS_snprint [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_python_api.py | 21 PyString_FromStringAndSize = pythonapi.PyString_FromStringAndSize 29 pythonapi.PyString_FromString.restype = py_object 30 pythonapi.PyString_FromString.argtypes = (c_char_p,) 34 pyob = pythonapi.PyString_FromString(s) 46 pythonapi.PyInt_FromLong.restype = py_object 47 self.assertEqual(pythonapi.PyInt_FromLong(42), 42) 51 pythonapi.PyInt_AsLong.argtypes = (py_object,) 52 pythonapi.PyInt_AsLong.restype = c_long 54 res = pythonapi.PyInt_AsLong(42) 71 PyOS_snprintf = pythonapi.PyOS_snprint [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_python_api.py | 21 PyString_FromStringAndSize = pythonapi.PyString_FromStringAndSize 29 pythonapi.PyString_FromString.restype = py_object 30 pythonapi.PyString_FromString.argtypes = (c_char_p,) 34 pyob = pythonapi.PyString_FromString(s) 46 pythonapi.PyInt_FromLong.restype = py_object 47 self.assertEqual(pythonapi.PyInt_FromLong(42), 42) 51 pythonapi.PyInt_AsLong.argtypes = (py_object,) 52 pythonapi.PyInt_AsLong.restype = c_long 54 res = pythonapi.PyInt_AsLong(42) 71 PyOS_snprintf = pythonapi.PyOS_snprint [all...] |
/external/chromium-trace/catapult/third_party/Paste/paste/util/ |
killthread.py | 10 if not hasattr(ctypes, 'pythonapi'): 12 "You cannot use paste.util.killthread without ctypes.pythonapi") 23 res = ctypes.pythonapi.PyThreadState_SetAsyncExc(ctypes.c_long(tid), ctypes.py_object(exctype)) 29 ctypes.pythonapi.PyThreadState_SetAsyncExc(ctypes.c_long(tid), 0)
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_ascii_formatd.py | 11 from ctypes import pythonapi, create_string_buffer, sizeof, byref, c_double 12 PyOS_ascii_formatd = pythonapi.PyOS_ascii_formatd
|
test_threading.py | 174 set_async_exc = ctypes.pythonapi.PyThreadState_SetAsyncExc 292 ensure = ctypes.pythonapi.PyGILState_Ensure 293 release = ctypes.pythonapi.PyGILState_Release
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_ascii_formatd.py | 11 from ctypes import pythonapi, create_string_buffer, sizeof, byref, c_double 12 PyOS_ascii_formatd = pythonapi.PyOS_ascii_formatd
|
test_threading.py | 174 set_async_exc = ctypes.pythonapi.PyThreadState_SetAsyncExc 292 ensure = ctypes.pythonapi.PyGILState_Ensure 293 release = ctypes.pythonapi.PyGILState_Release
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_ascii_formatd.py | 11 from ctypes import pythonapi, create_string_buffer, sizeof, byref, c_double 12 PyOS_ascii_formatd = pythonapi.PyOS_ascii_formatd
|
test_threading.py | 174 set_async_exc = ctypes.pythonapi.PyThreadState_SetAsyncExc 292 ensure = ctypes.pythonapi.PyGILState_Ensure 293 release = ctypes.pythonapi.PyGILState_Release
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_ascii_formatd.py | 11 from ctypes import pythonapi, create_string_buffer, sizeof, byref, c_double 12 PyOS_ascii_formatd = pythonapi.PyOS_ascii_formatd
|
test_threading.py | 174 set_async_exc = ctypes.pythonapi.PyThreadState_SetAsyncExc 292 ensure = ctypes.pythonapi.PyGILState_Ensure 293 release = ctypes.pythonapi.PyGILState_Release
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/ |
__init__.py | 449 pythonapi = PyDLL("python dll", None, _sys.dllhandle) variable 451 pythonapi = PyDLL("libpython%d.%d.dll" % _sys.version_info[:2]) variable 453 pythonapi = PyDLL(None) variable
|
/prebuilts/gdb/linux-x86/lib/python2.7/ctypes/ |
__init__.py | 449 pythonapi = PyDLL("python dll", None, _sys.dllhandle) variable 451 pythonapi = PyDLL("libpython%d.%d.dll" % _sys.version_info[:2]) variable 453 pythonapi = PyDLL(None) variable
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/ |
__init__.py | 449 pythonapi = PyDLL("python dll", None, _sys.dllhandle) variable 451 pythonapi = PyDLL("libpython%d.%d.dll" % _sys.version_info[:2]) variable 453 pythonapi = PyDLL(None) variable
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/ |
__init__.py | 449 pythonapi = PyDLL("python dll", None, _sys.dllhandle) variable 451 pythonapi = PyDLL("libpython%d.%d.dll" % _sys.version_info[:2]) variable 453 pythonapi = PyDLL(None) variable
|
/external/opencv3/3rdparty/jinja2/ |
debug.py | 277 if hasattr(ctypes.pythonapi, 'Py_InitModule4_64'):
|