Searched refs:create_unicode_buffer (Results 1 – 13 of 13) sorted by relevance
/third_party/python/Lib/ctypes/test/ |
D | test_buffers.py | 32 b = create_unicode_buffer(32) 37 b = create_unicode_buffer("abc") 48 self.assertRaises(TypeError, create_unicode_buffer, b"abc") 52 b = create_unicode_buffer("abc") 67 b = create_unicode_buffer(s)
|
D | test_unicode.py | 19 buf = ctypes.create_unicode_buffer("abc") 22 buf = ctypes.create_unicode_buffer("ab\xe4\xf6\xfc")
|
D | test_memfunctions.py | 68 p = create_unicode_buffer("Hello, World") 69 a = create_unicode_buffer(1000000)
|
D | test_arrays.py | 122 p = create_unicode_buffer("foo")
|
/third_party/python/PC/ |
D | validate_ucrtbase.py | 8 from ctypes import (c_buffer, POINTER, byref, create_unicode_buffer, 51 name = create_unicode_buffer(name_len)
|
/third_party/python/Tools/unicode/ |
D | genwincodec.py | 24 buf = ctypes.create_unicode_buffer(2)
|
/third_party/python/PC/layout/support/ |
D | appxmanifest.py | 210 result = ctypes.create_unicode_buffer(256)
|
/third_party/python/Lib/test/support/ |
D | os_helper.py | 311 buffer = ctypes.create_unicode_buffer(len(path) * 2)
|
/third_party/python/Lib/ctypes/ |
D | __init__.py | 273 def create_unicode_buffer(init, size=None): function
|
/third_party/python/Lib/test/ |
D | test_ntpath.py | 41 result = ctypes.create_unicode_buffer(result_len)
|
D | test_os.py | 904 buf = ctypes.create_unicode_buffer("", 100)
|
/third_party/python/Doc/library/ |
D | ctypes.rst | 337 :func:`create_unicode_buffer` function. 1879 .. function:: create_unicode_buffer(init_or_size, size=None) 1893 .. audit-event:: ctypes.create_unicode_buffer init,size ctypes.create_unicode_buffer
|
/third_party/python/Misc/NEWS.d/ |
D | 3.9.0a1.rst | 2993 :func:`ctypes.create_unicode_buffer()` now also supports non-BMP characters
|