HomeSort by relevance Sort by last modified time
    Searched full:c_wchar (Results 1 - 25 of 32) sorted by null

1 2

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_buffers.py 40 c_wchar
47 self.assertEqual(sizeof(b), 32 * sizeof(c_wchar))
52 self.assertEqual(sizeof(b), 4 * sizeof(c_wchar))
64 self.assertEqual(sizeof(b), 4 * sizeof(c_wchar))
test_prototypes.py 42 return (c_wchar * n)(*init)
160 c_wchar
175 func.argtypes = POINTER(c_wchar),
183 ca = c_wchar("a")
201 ca = c_wchar("a")
test_slicing.py 135 c_wchar
143 dll.my_wcsdup.restype = POINTER(c_wchar)
144 dll.my_wcsdup.argtypes = POINTER(c_wchar),
159 if sizeof(c_wchar) == sizeof(c_short):
161 elif sizeof(c_wchar) == sizeof(c_int):
163 elif sizeof(c_wchar) == sizeof(c_long):
test_strings.py 64 c_wchar
70 BUF = c_wchar * 4
149 c_wchar
155 c_wchar(u"x")
156 repr(byref(c_wchar(u"x")))
157 c_wchar("x")
test_pickling.py 72 pickle.dumps(c_wchar(u"x"))
test_bitfields.py 131 c_wchar
135 result = self.fail_fields(("a", c_wchar, 1))
136 self.assertEqual(result, (TypeError, 'bit fields not allowed for type c_wchar'))
test_memfunctions.py 70 result = memmove(a, p, len(p) * sizeof(c_wchar))
test_as_parameter.py 23 c_wchar
27 f.argtypes = [c_byte, c_wchar, c_int, c_long, c_float, c_double]
test_arrays.py 111 sz = (c_wchar * 3).from_address(addressof(p))
test_functions.py 68 c_wchar
72 f.argtypes = [c_byte, c_wchar, c_int, c_long, c_float, c_double]
79 c_wchar
84 f.restype = c_wchar
test_unicode.py 6 ctypes.c_wchar
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_buffers.py 40 c_wchar
47 self.assertEqual(sizeof(b), 32 * sizeof(c_wchar))
52 self.assertEqual(sizeof(b), 4 * sizeof(c_wchar))
64 self.assertEqual(sizeof(b), 4 * sizeof(c_wchar))
test_prototypes.py 42 return (c_wchar * n)(*init)
160 c_wchar
175 func.argtypes = POINTER(c_wchar),
183 ca = c_wchar("a")
201 ca = c_wchar("a")
test_slicing.py 135 c_wchar
143 dll.my_wcsdup.restype = POINTER(c_wchar)
144 dll.my_wcsdup.argtypes = POINTER(c_wchar),
159 if sizeof(c_wchar) == sizeof(c_short):
161 elif sizeof(c_wchar) == sizeof(c_int):
163 elif sizeof(c_wchar) == sizeof(c_long):
test_strings.py 64 c_wchar
70 BUF = c_wchar * 4
149 c_wchar
155 c_wchar(u"x")
156 repr(byref(c_wchar(u"x")))
157 c_wchar("x")
test_pickling.py 72 pickle.dumps(c_wchar(u"x"))
test_bitfields.py 131 c_wchar
135 result = self.fail_fields(("a", c_wchar, 1))
136 self.assertEqual(result, (TypeError, 'bit fields not allowed for type c_wchar'))
test_memfunctions.py 70 result = memmove(a, p, len(p) * sizeof(c_wchar))
test_as_parameter.py 23 c_wchar
27 f.argtypes = [c_byte, c_wchar, c_int, c_long, c_float, c_double]
test_arrays.py 111 sz = (c_wchar * 3).from_address(addressof(p))
test_functions.py 68 c_wchar
72 f.argtypes = [c_byte, c_wchar, c_int, c_long, c_float, c_double]
79 c_wchar
84 f.restype = c_wchar
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/
wintypes.py 12 WCHAR = c_wchar
167 ("cFileName", c_wchar * MAX_PATH),
168 ("cAlternateFileName", c_wchar * 14)]
__init__.py 271 POINTER(c_wchar).from_param = c_wchar_p.from_param
294 class c_wchar(_SimpleCData): class in function:_reset_cache
305 buftype = c_wchar * size
310 buftype = c_wchar * init
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/
wintypes.py 12 WCHAR = c_wchar
167 ("cFileName", c_wchar * MAX_PATH),
168 ("cAlternateFileName", c_wchar * 14)]
__init__.py 271 POINTER(c_wchar).from_param = c_wchar_p.from_param
294 class c_wchar(_SimpleCData): class in function:_reset_cache
305 buftype = c_wchar * size
310 buftype = c_wchar * init

Completed in 165 milliseconds

1 2