/prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/ |
wintypes.py | 20 BOOL = c_long 29 LONG = c_long 45 if sizeof(c_long) == sizeof(c_void_p): 47 LPARAM = c_long 101 _fields_ = [("left", c_long), 102 ("top", c_long), 103 ("right", c_long), 104 ("bottom", c_long)] 119 _fields_ = [("x", c_long), 120 ("y", c_long)] [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ctypes/ |
wintypes.py | 20 BOOL = c_long 29 LONG = c_long 45 if sizeof(c_long) == sizeof(c_void_p): 47 LPARAM = c_long 101 _fields_ = [("left", c_long), 102 ("top", c_long), 103 ("right", c_long), 104 ("bottom", c_long)] 119 _fields_ = [("x", c_long), 120 ("y", c_long)] [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/ |
wintypes.py | 20 BOOL = c_long 29 LONG = c_long 45 if sizeof(c_long) == sizeof(c_void_p): 47 LPARAM = c_long 101 _fields_ = [("left", c_long), 102 ("top", c_long), 103 ("right", c_long), 104 ("bottom", c_long)] 119 _fields_ = [("x", c_long), 120 ("y", c_long)] [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/ |
wintypes.py | 20 BOOL = c_long 29 LONG = c_long 45 if sizeof(c_long) == sizeof(c_void_p): 47 LPARAM = c_long 101 _fields_ = [("left", c_long), 102 ("top", c_long), 103 ("right", c_long), 104 ("bottom", c_long)] 119 _fields_ = [("x", c_long), 120 ("y", c_long)] [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/ |
test_pep3118.py | 79 _fields_ = [("x", c_long), ("y", c_long)] 83 _fields_ = [("x", c_long), ("y", c_long)] 87 Point2._fields_ = [("x", c_long), ("y", c_long)] 101 Complete._fields_ = [("a", c_long)] 119 # c_int and c_uint may be aliases to c_long 123 (c_long, "<l", None, c_long), [all...] |
test_win32.py | 77 _fields_ = [("x", c_long), 78 ("y", c_long)] 81 _fields_ = [("left", c_long), 82 ("top", c_long), 83 ("right", c_long), 84 ("bottom", c_long)]
|
test_parameters.py | 91 from ctypes import c_short, c_uint, c_int, c_long, POINTER, pointer namespace 102 if c_int != c_long: 103 self.assertRaises(TypeError, LPINT.from_param, pointer(c_long(42))) 110 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byref namespace 116 if c_int != c_long: 117 self.assertRaises(TypeError, LPINT.from_param, byref(c_long(22))) 122 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byref namespace 128 if c_int != c_long: 129 self.assertRaises(TypeError, LPLPINT.from_param, byref(pointer(c_long(22)))) 133 from ctypes import c_short, c_uint, c_int, c_long, POINTE namespace [all...] |
test_repr.py | 5 for base in [c_byte, c_short, c_int, c_long, c_longlong,
|
test_unaligned_structures.py | 13 for typ in [c_short, c_int, c_long, c_longlong,
|
/prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/ |
test_pep3118.py | 79 _fields_ = [("x", c_long), ("y", c_long)] 83 _fields_ = [("x", c_long), ("y", c_long)] 87 Point2._fields_ = [("x", c_long), ("y", c_long)] 101 Complete._fields_ = [("a", c_long)] 119 # c_int and c_uint may be aliases to c_long 123 (c_long, "<l", None, c_long), [all...] |
test_win32.py | 77 _fields_ = [("x", c_long), 78 ("y", c_long)] 81 _fields_ = [("left", c_long), 82 ("top", c_long), 83 ("right", c_long), 84 ("bottom", c_long)]
|
test_parameters.py | 91 from ctypes import c_short, c_uint, c_int, c_long, POINTER, pointer namespace 102 if c_int != c_long: 103 self.assertRaises(TypeError, LPINT.from_param, pointer(c_long(42))) 110 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byref namespace 116 if c_int != c_long: 117 self.assertRaises(TypeError, LPINT.from_param, byref(c_long(22))) 122 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byref namespace 128 if c_int != c_long: 129 self.assertRaises(TypeError, LPLPINT.from_param, byref(pointer(c_long(22)))) 133 from ctypes import c_short, c_uint, c_int, c_long, POINTE namespace [all...] |
test_repr.py | 5 for base in [c_byte, c_short, c_int, c_long, c_longlong,
|
test_unaligned_structures.py | 13 for typ in [c_short, c_int, c_long, c_longlong,
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_pep3118.py | 79 _fields_ = [("x", c_long), ("y", c_long)] 83 _fields_ = [("x", c_long), ("y", c_long)] 87 Point2._fields_ = [("x", c_long), ("y", c_long)] 101 Complete._fields_ = [("a", c_long)] 119 # c_int and c_uint may be aliases to c_long 123 (c_long, "<l", None, c_long), [all...] |
test_win32.py | 77 _fields_ = [("x", c_long), 78 ("y", c_long)] 81 _fields_ = [("left", c_long), 82 ("top", c_long), 83 ("right", c_long), 84 ("bottom", c_long)]
|
test_parameters.py | 91 from ctypes import c_short, c_uint, c_int, c_long, POINTER, pointer namespace 102 if c_int != c_long: 103 self.assertRaises(TypeError, LPINT.from_param, pointer(c_long(42))) 110 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byref namespace 116 if c_int != c_long: 117 self.assertRaises(TypeError, LPINT.from_param, byref(c_long(22))) 122 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byref namespace 128 if c_int != c_long: 129 self.assertRaises(TypeError, LPLPINT.from_param, byref(pointer(c_long(22)))) 133 from ctypes import c_short, c_uint, c_int, c_long, POINTE namespace [all...] |
test_repr.py | 5 for base in [c_byte, c_short, c_int, c_long, c_longlong,
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_pep3118.py | 79 _fields_ = [("x", c_long), ("y", c_long)] 83 _fields_ = [("x", c_long), ("y", c_long)] 87 Point2._fields_ = [("x", c_long), ("y", c_long)] 101 Complete._fields_ = [("a", c_long)] 119 # c_int and c_uint may be aliases to c_long 123 (c_long, "<l", None, c_long), [all...] |
test_win32.py | 77 _fields_ = [("x", c_long), 78 ("y", c_long)] 81 _fields_ = [("left", c_long), 82 ("top", c_long), 83 ("right", c_long), 84 ("bottom", c_long)]
|
test_parameters.py | 91 from ctypes import c_short, c_uint, c_int, c_long, POINTER, pointer namespace 102 if c_int != c_long: 103 self.assertRaises(TypeError, LPINT.from_param, pointer(c_long(42))) 110 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byref namespace 116 if c_int != c_long: 117 self.assertRaises(TypeError, LPINT.from_param, byref(c_long(22))) 122 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byref namespace 128 if c_int != c_long: 129 self.assertRaises(TypeError, LPLPINT.from_param, byref(pointer(c_long(22)))) 133 from ctypes import c_short, c_uint, c_int, c_long, POINTE namespace [all...] |
test_repr.py | 5 for base in [c_byte, c_short, c_int, c_long, c_longlong,
|
/external/chromium-trace/catapult/third_party/Paste/paste/util/ |
killthread.py | 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/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
infinite_recursion.py | 30 __darwin_intptr_t = c_long 51 __darwin_ssize_t = c_long 52 __darwin_time_t = c_long 112 ('slen', c_long), 140 ('flags', c_long), 149 ('len', c_long), 159 ('minsize', c_long), 160 ('maxsize', c_long), 272 bio_info_cb = CFUNCTYPE(None, POINTER(bio_st), c_int, STRING, c_int, c_long, c_long) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
infinite_recursion.py | 30 __darwin_intptr_t = c_long 51 __darwin_ssize_t = c_long 52 __darwin_time_t = c_long 112 ('slen', c_long), 140 ('flags', c_long), 149 ('len', c_long), 159 ('minsize', c_long), 160 ('maxsize', c_long), 272 bio_info_cb = CFUNCTYPE(None, POINTER(bio_st), c_int, STRING, c_int, c_long, c_long) [all...] |