/aosp_15_r20/external/python/cpython2/Include/ |
D | unicodeobject.h | 159 # define PyUnicode_AsWideChar PyUnicodeUCS2_AsWideChar macro 246 # define PyUnicode_AsWideChar PyUnicodeUCS4_AsWideChar macro 591 PyAPI_FUNC(Py_ssize_t) PyUnicode_AsWideChar(
|
/aosp_15_r20/external/python/cpython2/Modules/_ctypes/ |
D | ctypes.h | 426 # undef PyUnicode_AsWideChar 427 # define PyUnicode_AsWideChar PyUnicode_AsWideChar_fixed macro
|
D | cfield.c | 1285 PyUnicode_AsWideChar((PyUnicodeObject *)value, (wchar_t *)ptr, size); in U_set() 1458 if (-1 == PyUnicode_AsWideChar((PyUnicodeObject *)value, in Z_set()
|
D | callproc.c | 707 if (-1 == PyUnicode_AsWideChar((PyUnicodeObject *)obj, in ConvParam()
|
D | _ctypes.c | 1362 result = PyUnicode_AsWideChar((PyUnicodeObject *)value, in WCharArray_set_value()
|
/aosp_15_r20/external/python/cpython3/Modules/ |
D | _winapi.c | 840 size = PyUnicode_AsWideChar(key, NULL, 0); in getenvironment() 848 size = PyUnicode_AsWideChar(value, NULL, 0); in getenvironment() 868 Py_ssize_t size = PyUnicode_AsWideChar(key, p, end - p); in getenvironment() 872 size = PyUnicode_AsWideChar(value, p, end - p); in getenvironment()
|
D | arraymodule.c | 265 Py_ssize_t len = PyUnicode_AsWideChar(u, NULL, 0); in u_setitem() 273 len = PyUnicode_AsWideChar(u, &w, 1); in u_setitem() 1733 Py_ssize_t ustr_length = PyUnicode_AsWideChar(ustr, NULL, 0); in array_array_fromunicode_impl() 1743 PyUnicode_AsWideChar( in array_array_fromunicode_impl()
|
D | _cursesmodule.c | 319 if (PyUnicode_AsWideChar(obj, buffer, 2) != 1) { in PyCurses_ConvertToCchar_t() 4451 if (PyUnicode_AsWideChar(obj, buffer, 2) != 1) { in PyCurses_ConvertToWchar_t()
|
/aosp_15_r20/external/python/cpython2/Modules/ |
D | _localemodule.c | 323 if (PyUnicode_AsWideChar((PyUnicodeObject*)os1, ws1, len1) == -1) in PyLocale_strcoll() 332 if (PyUnicode_AsWideChar((PyUnicodeObject*)os2, ws2, len2) == -1) in PyLocale_strcoll()
|
/aosp_15_r20/external/python/cpython3/Modules/_ctypes/ |
D | cfield.c | 1153 len = PyUnicode_AsWideChar(value, chars, 2); in u_set() 1211 Py_ssize_t size = PyUnicode_AsWideChar(value, NULL, 0); in U_set() 1225 if (PyUnicode_AsWideChar(value, (wchar_t *)ptr, length) == -1) { in U_set()
|
D | _ctypes.c | 1401 Py_ssize_t len = PyUnicode_AsWideChar(value, NULL, 0); in WCharArray_set_value() 1412 if (PyUnicode_AsWideChar(value, (wchar_t *)self->b_ptr, size) < 0) { in WCharArray_set_value()
|
/aosp_15_r20/external/python/cpython2/Doc/data/ |
D | refcounts.dat | 1504 PyUnicode_AsWideChar:int::: 1505 PyUnicode_AsWideChar:PyObject*:*unicode:0: 1506 PyUnicode_AsWideChar:wchar_t*:w:: 1507 PyUnicode_AsWideChar:int:size::
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/ |
D | unicodeobject.h | 298 PyAPI_FUNC(Py_ssize_t) PyUnicode_AsWideChar(
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/ |
D | unicodeobject.h | 298 PyAPI_FUNC(Py_ssize_t) PyUnicode_AsWideChar(
|
/aosp_15_r20/external/python/cpython3/Include/ |
D | unicodeobject.h | 298 PyAPI_FUNC(Py_ssize_t) PyUnicode_AsWideChar(
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/ |
D | unicodeobject.h | 298 PyAPI_FUNC(Py_ssize_t) PyUnicode_AsWideChar(
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/ |
D | unicodeobject.h | 298 PyAPI_FUNC(Py_ssize_t) PyUnicode_AsWideChar(
|
/aosp_15_r20/external/python/cpython3/PC/ |
D | winreg.c | 669 len = PyUnicode_AsWideChar(t, NULL, 0); in Py2Reg() 693 len = PyUnicode_AsWideChar(t, P, size); in Py2Reg()
|
D | python3dll.c | 635 EXPORT_FUNC(PyUnicode_AsWideChar)
|
/aosp_15_r20/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 2447 PyUnicode_AsWideChar:Py_ssize_t::: 2448 PyUnicode_AsWideChar:PyObject*:*unicode:0: 2449 PyUnicode_AsWideChar:wchar_t*:w:: 2450 PyUnicode_AsWideChar:Py_ssize_t:size::
|
D | stable_abi.dat | 717 function,PyUnicode_AsWideChar,3.2,,
|
/aosp_15_r20/external/python/cpython3/Doc/c-api/ |
D | unicode.rst | 734 :c:func:`PyUnicode_AsUCS4`, :c:func:`PyUnicode_AsWideChar`, 750 :c:func:`PyUnicode_AsUCS4`, :c:func:`PyUnicode_AsWideChar`, 948 .. c:function:: Py_ssize_t PyUnicode_AsWideChar(PyObject *unicode, wchar_t *w, Py_ssize_t size)
|
/aosp_15_r20/external/python/cpython3/Misc/ |
D | stable_abi.toml | 1468 [function.PyUnicode_AsWideChar]
|
/aosp_15_r20/external/python/cpython2/Doc/c-api/ |
D | unicode.rst | 391 .. c:function:: Py_ssize_t PyUnicode_AsWideChar(PyUnicodeObject *unicode, wchar_t *w, Py_ssize_t si…
|
/aosp_15_r20/external/python/cpython3/Objects/ |
D | unicodeobject.c | 3252 PyUnicode_AsWideChar(PyObject *unicode, in PyUnicode_AsWideChar() function 4459 repwlen = PyUnicode_AsWideChar(repunicode, NULL, 0); in unicode_decode_call_errorhandler_wchar() 4483 PyUnicode_AsWideChar(repunicode, *buf + *outpos, repwlen); in unicode_decode_call_errorhandler_wchar()
|