Home
last modified time | relevance | path

Searched refs:wstring_at (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython2/Lib/ctypes/test/
Dtest_memfunctions.py14 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/
Dtest_memfunctions.py15 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__.py505 def wstring_at(ptr, size=-1): function
/external/python/cpython2/Lib/ctypes/
D__init__.py518 def wstring_at(ptr, size=-1): function
/external/python/cpython2/Misc/NEWS.d/
D2.6b2.rst140 ctypes.string_at and ctypes.wstring_at did call Python api functions without
D2.6a1.rst2892 ctypes.string_at(buf, 0) and ctypes.wstring_at(buf, 0) returned string up to
/external/python/cpython3/Modules/_ctypes/
D_ctypes.c5410 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.c5658 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/
Dctypes.rst1976 .. function:: wstring_at(address, size=-1)
/external/python/cpython2/Doc/library/
Dctypes.rst2041 .. function:: wstring_at(address[, size])
/external/python/cpython3/Misc/
DHISTORY16563 - Issue #3554: ctypes.string_at and ctypes.wstring_at did call Python