HomeSort by relevance Sort by last modified time
    Searched refs:c_long (Results 1 - 25 of 51) sorted by null

1 2 3

  /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...]
__init__.py 176 class c_long(_SimpleCData): class in inherits:_SimpleCData
178 _check_size(c_long)
185 # if int and long have the same size, make c_int an alias for c_long
186 c_int = c_long
211 # if long and long long have the same size, make c_longlong an alias for c_long
212 c_longlong = c_long
404 # Mustn't it derive from c_long then?
478 c_ssize_t = c_long
545 for kind in [c_short, c_int, c_long, c_longlong]:
  /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...]
__init__.py 176 class c_long(_SimpleCData): class in inherits:_SimpleCData
178 _check_size(c_long)
185 # if int and long have the same size, make c_int an alias for c_long
186 c_int = c_long
211 # if long and long long have the same size, make c_longlong an alias for c_long
212 c_longlong = c_long
404 # Mustn't it derive from c_long then?
478 c_ssize_t = c_long
545 for kind 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,
test_functions.py 72 f.argtypes = [c_byte, c_wchar, c_int, c_long, c_float, c_double]
83 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
98 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
124 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
136 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
148 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_longdouble]
165 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
171 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double, c_longlong]
test_unaligned_structures.py 13 for typ in [c_short, c_int, c_long, c_longlong,
test_funcptr.py 46 WNDPROC = WINFUNCTYPE(c_long, c_int, c_int, c_int, c_int)
70 WNDPROC_2 = WINFUNCTYPE(c_long, c_int, c_int, c_int, c_int)
test_callbacks.py 57 self.check_type(c_long, 42)
58 self.check_type(c_long, -42)
172 integrate.argtypes = (c_double, c_double, CALLBACK, c_long)
test_cfuncs.py 90 self._dll.tf_l.restype = c_long
91 self._dll.tf_l.argtypes = (c_long,)
96 self._dll.tf_bl.restype = c_long
97 self._dll.tf_bl.argtypes = (c_byte, c_long)
test_python_api.py 52 pythonapi.PyInt_AsLong.restype = c_long
  /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,
test_functions.py 72 f.argtypes = [c_byte, c_wchar, c_int, c_long, c_float, c_double]
83 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
98 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
124 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
136 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
148 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_longdouble]
165 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
171 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double, c_longlong]
test_unaligned_structures.py 13 for typ in [c_short, c_int, c_long, c_longlong,
test_funcptr.py 46 WNDPROC = WINFUNCTYPE(c_long, c_int, c_int, c_int, c_int)
70 WNDPROC_2 = WINFUNCTYPE(c_long, c_int, c_int, c_int, c_int)
test_callbacks.py 57 self.check_type(c_long, 42)
58 self.check_type(c_long, -42)
172 integrate.argtypes = (c_double, c_double, CALLBACK, c_long)
  /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...]
  /prebuilts/misc/common/swig/include/2.0.11/d/
dprimitives.swg 11 #define SWIG_LONG_DTYPE tango.stdc.config.c_long
16 #define SWIG_LONG_DTYPE core.stdc.config.c_long

Completed in 480 milliseconds

1 2 3