Searched refs:wstring_at (Results 1 – 11 of 11) sorted by relevance
/external/python/cpython2/Lib/ctypes/test/ |
D | test_memfunctions.py | 14 lambda: wstring_at(u"foo", sys.maxint - 1)) 71 self.assertEqual(wstring_at(a), "Hello, World") 72 self.assertEqual(wstring_at(a, 5), "Hello") 73 self.assertEqual(wstring_at(a, 16), "Hello, World\0\0\0\0") 74 self.assertEqual(wstring_at(a, 0), "")
|
/external/python/cpython3/Lib/ctypes/test/ |
D | test_memfunctions.py | 15 lambda: wstring_at(u"foo", sys.maxint - 1)) 73 self.assertEqual(wstring_at(a), "Hello, World") 74 self.assertEqual(wstring_at(a, 5), "Hello") 75 self.assertEqual(wstring_at(a, 16), "Hello, World\0\0\0\0") 76 self.assertEqual(wstring_at(a, 0), "")
|
/external/python/cpython3/Lib/ctypes/ |
D | __init__.py | 505 def wstring_at(ptr, size=-1): function
|
/external/python/cpython2/Lib/ctypes/ |
D | __init__.py | 518 def wstring_at(ptr, size=-1): function
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.6b2.rst | 140 ctypes.string_at and ctypes.wstring_at did call Python api functions without
|
D | 2.6a1.rst | 2892 ctypes.string_at(buf, 0) and ctypes.wstring_at(buf, 0) returned string up to
|
/external/python/cpython3/Modules/_ctypes/ |
D | _ctypes.c | 5410 wstring_at(const wchar_t *ptr, int size) in wstring_at() function 5583 PyModule_AddObject(m, "_wstring_at_addr", PyLong_FromVoidPtr(wstring_at)); in PyInit__ctypes()
|
/external/python/cpython2/Modules/_ctypes/ |
D | _ctypes.c | 5658 wstring_at(const wchar_t *ptr, int size) in wstring_at() function 5820 PyModule_AddObject(m, "_wstring_at_addr", PyLong_FromVoidPtr(wstring_at)); in init_ctypes()
|
/external/python/cpython3/Doc/library/ |
D | ctypes.rst | 1976 .. function:: wstring_at(address, size=-1)
|
/external/python/cpython2/Doc/library/ |
D | ctypes.rst | 2041 .. function:: wstring_at(address[, size])
|
/external/python/cpython3/Misc/ |
D | HISTORY | 16563 - Issue #3554: ctypes.string_at and ctypes.wstring_at did call Python
|