HomeSort by relevance Sort by last modified time
    Searched refs:c_int (Results 151 - 175 of 235) sorted by null

1 2 3 4 5 67 8 910

  /external/python/cpython2/Lib/ctypes/test/
test_numbers.py 22 ArgType = type(byref(c_int(0)))
25 signed_types = [c_byte, c_short, c_int, c_long, c_longlong]
216 # c_int() can be initialized from Python's int, and c_int.
219 self.assertRaises(TypeError, c_int, c_long(42))
258 from ctypes import c_int
264 run_test(REP, "c_int()", c_int)
265 run_test(REP, "c_int(999)", c_int)
    [all...]
test_errno.py 21 libc_open.argtypes = c_char_p, c_int
38 libc_open.argtypes = c_char_p, c_int
test_libc.py 17 comparefunc = CFUNCTYPE(c_int, POINTER(c_char), POINTER(c_char))
test_unaligned_structures.py 13 for typ in [c_short, c_int, c_long, c_longlong,
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_numbers.py 22 ArgType = type(byref(c_int(0)))
25 signed_types = [c_byte, c_short, c_int, c_long, c_longlong]
214 # c_int() can be initialized from Python's int, and c_int.
217 self.assertRaises(TypeError, c_int, c_long(42))
255 from ctypes import c_int
261 run_test(REP, "c_int()", c_int)
262 run_test(REP, "c_int(999)", c_int)
    [all...]
test_errno.py 21 libc_open.argtypes = c_char_p, c_int
38 libc_open.argtypes = c_char_p, c_int
test_libc.py 17 comparefunc = CFUNCTYPE(c_int, POINTER(c_char), POINTER(c_char))
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_numbers.py 22 ArgType = type(byref(c_int(0)))
25 signed_types = [c_byte, c_short, c_int, c_long, c_longlong]
214 # c_int() can be initialized from Python's int, and c_int.
217 self.assertRaises(TypeError, c_int, c_long(42))
255 from ctypes import c_int
261 run_test(REP, "c_int()", c_int)
262 run_test(REP, "c_int(999)", c_int)
    [all...]
test_errno.py 21 libc_open.argtypes = c_char_p, c_int
38 libc_open.argtypes = c_char_p, c_int
test_libc.py 17 comparefunc = CFUNCTYPE(c_int, POINTER(c_char), POINTER(c_char))
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_numbers.py 22 ArgType = type(byref(c_int(0)))
25 signed_types = [c_byte, c_short, c_int, c_long, c_longlong]
214 # c_int() can be initialized from Python's int, and c_int.
217 self.assertRaises(TypeError, c_int, c_long(42))
255 from ctypes import c_int
261 run_test(REP, "c_int()", c_int)
262 run_test(REP, "c_int(999)", c_int)
    [all...]
test_errno.py 21 libc_open.argtypes = c_char_p, c_int
38 libc_open.argtypes = c_char_p, c_int
test_libc.py 17 comparefunc = CFUNCTYPE(c_int, POINTER(c_char), POINTER(c_char))
test_unaligned_structures.py 13 for typ in [c_short, c_int, c_long, c_longlong,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_numbers.py 22 ArgType = type(byref(c_int(0)))
25 signed_types = [c_byte, c_short, c_int, c_long, c_longlong]
214 # c_int() can be initialized from Python's int, and c_int.
217 self.assertRaises(TypeError, c_int, c_long(42))
255 from ctypes import c_int
261 run_test(REP, "c_int()", c_int)
262 run_test(REP, "c_int(999)", c_int)
    [all...]
test_errno.py 21 libc_open.argtypes = c_char_p, c_int
38 libc_open.argtypes = c_char_p, c_int
test_libc.py 17 comparefunc = CFUNCTYPE(c_int, POINTER(c_char), POINTER(c_char))
test_unaligned_structures.py 13 for typ in [c_short, c_int, c_long, c_longlong,
  /external/python/cpython2/Lib/ctypes/
__init__.py 182 # if int and long have the same size, make c_int an alias for c_long
183 c_int = c_long variable
186 class c_int(_SimpleCData): class in inherits:_SimpleCData
188 _check_size(c_int)
276 CFUNCTYPE(c_int)(lambda: None)
344 _func_restype_ = c_int
472 c_ssize_t = c_int
488 memset = CFUNCTYPE(c_void_p, c_void_p, c_int, c_size_t)(_memset_addr)
501 _string_at = PYFUNCTYPE(py_object, c_void_p, c_int)(_string_at_addr)
513 _wstring_at = PYFUNCTYPE(py_object, c_void_p, c_int)(_wstring_at_addr
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/
__init__.py 185 # if int and long have the same size, make c_int an alias for c_long
186 c_int = c_long variable
189 class c_int(_SimpleCData): class in inherits:_SimpleCData
191 _check_size(c_int)
279 CFUNCTYPE(c_int)(lambda: None)
347 _func_restype_ = c_int
475 c_ssize_t = c_int
491 memset = CFUNCTYPE(c_void_p, c_void_p, c_int, c_size_t)(_memset_addr)
504 _string_at = PYFUNCTYPE(py_object, c_void_p, c_int)(_string_at_addr)
516 _wstring_at = PYFUNCTYPE(py_object, c_void_p, c_int)(_wstring_at_addr
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/
__init__.py 185 # if int and long have the same size, make c_int an alias for c_long
186 c_int = c_long variable
189 class c_int(_SimpleCData): class in inherits:_SimpleCData
191 _check_size(c_int)
279 CFUNCTYPE(c_int)(lambda: None)
347 _func_restype_ = c_int
475 c_ssize_t = c_int
491 memset = CFUNCTYPE(c_void_p, c_void_p, c_int, c_size_t)(_memset_addr)
504 _string_at = PYFUNCTYPE(py_object, c_void_p, c_int)(_string_at_addr)
516 _wstring_at = PYFUNCTYPE(py_object, c_void_p, c_int)(_wstring_at_addr
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/
__init__.py 185 # if int and long have the same size, make c_int an alias for c_long
186 c_int = c_long variable
189 class c_int(_SimpleCData): class in inherits:_SimpleCData
191 _check_size(c_int)
279 CFUNCTYPE(c_int)(lambda: None)
347 _func_restype_ = c_int
475 c_ssize_t = c_int
491 memset = CFUNCTYPE(c_void_p, c_void_p, c_int, c_size_t)(_memset_addr)
504 _string_at = PYFUNCTYPE(py_object, c_void_p, c_int)(_string_at_addr)
516 _wstring_at = PYFUNCTYPE(py_object, c_void_p, c_int)(_wstring_at_addr
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/
__init__.py 185 # if int and long have the same size, make c_int an alias for c_long
186 c_int = c_long variable
189 class c_int(_SimpleCData): class in inherits:_SimpleCData
191 _check_size(c_int)
279 CFUNCTYPE(c_int)(lambda: None)
347 _func_restype_ = c_int
475 c_ssize_t = c_int
491 memset = CFUNCTYPE(c_void_p, c_void_p, c_int, c_size_t)(_memset_addr)
504 _string_at = PYFUNCTYPE(py_object, c_void_p, c_int)(_string_at_addr)
516 _wstring_at = PYFUNCTYPE(py_object, c_void_p, c_int)(_wstring_at_addr
    [all...]

Completed in 464 milliseconds

1 2 3 4 5 67 8 910