/aosp_15_r20/external/python/cpython3/Modules/ |
D | _codecsmodule.c | 310 PyObject *decoded = PyUnicode_DecodeUTF16Stateful(data->buf, data->len, in _codecs_utf_16_decode_impl() 332 PyObject *decoded = PyUnicode_DecodeUTF16Stateful(data->buf, data->len, in _codecs_utf_16_le_decode_impl() 354 PyObject *decoded = PyUnicode_DecodeUTF16Stateful(data->buf, data->len, in _codecs_utf_16_be_decode_impl() 384 PyObject *decoded = PyUnicode_DecodeUTF16Stateful(data->buf, data->len, in _codecs_utf_16_ex_decode_impl()
|
/aosp_15_r20/external/python/cpython2/Modules/ |
D | _codecsmodule.c | 293 decoded = PyUnicode_DecodeUTF16Stateful(pbuf.buf, pbuf.len, errors, in utf_16_decode() 317 decoded = PyUnicode_DecodeUTF16Stateful(pbuf.buf, pbuf.len, errors, in utf_16_le_decode() 341 decoded = PyUnicode_DecodeUTF16Stateful(pbuf.buf, pbuf.len, errors, in utf_16_be_decode() 372 unicode = PyUnicode_DecodeUTF16Stateful(pbuf.buf, pbuf.len, errors, in utf_16_ex_decode()
|
/aosp_15_r20/external/python/cpython2/Include/ |
D | unicodeobject.h | 173 # define PyUnicode_DecodeUTF16Stateful PyUnicodeUCS2_DecodeUTF16Stateful macro 260 # define PyUnicode_DecodeUTF16Stateful PyUnicodeUCS4_DecodeUTF16Stateful macro 881 PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF16Stateful(
|
/aosp_15_r20/external/python/cpython2/Doc/data/ |
D | refcounts.dat | 1515 PyUnicode_DecodeUTF16Stateful:PyObject*::+1: 1516 PyUnicode_DecodeUTF16Stateful:const char*:s:: 1517 PyUnicode_DecodeUTF16Stateful:int:size:: 1518 PyUnicode_DecodeUTF16Stateful:const char*:errors:: 1519 PyUnicode_DecodeUTF16Stateful:int*:byteorder:: 1520 PyUnicode_DecodeUTF16Stateful:int*:consumed::
|
/aosp_15_r20/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 2462 PyUnicode_DecodeUTF16Stateful:PyObject*::+1: 2463 PyUnicode_DecodeUTF16Stateful:const char*:s:: 2464 PyUnicode_DecodeUTF16Stateful:Py_ssize_t:size:: 2465 PyUnicode_DecodeUTF16Stateful:const char*:errors:: 2466 PyUnicode_DecodeUTF16Stateful:int*:byteorder:: 2467 PyUnicode_DecodeUTF16Stateful:Py_ssize_t*:consumed::
|
D | stable_abi.dat | 738 function,PyUnicode_DecodeUTF16Stateful,3.2,,
|
D | python3.11.abi | 797 …<elf-symbol name='PyUnicode_DecodeUTF16Stateful' type='func-type' binding='global-binding' visibil… 10585 …PyUnicode_DecodeUTF16Stateful' mangled-name='PyUnicode_DecodeUTF16Stateful' filepath='Objects/unic…
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/ |
D | unicodeobject.h | 585 PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF16Stateful(
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/ |
D | unicodeobject.h | 585 PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF16Stateful(
|
/aosp_15_r20/external/python/cpython3/Include/ |
D | unicodeobject.h | 585 PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF16Stateful(
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/ |
D | unicodeobject.h | 585 PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF16Stateful(
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/ |
D | unicodeobject.h | 585 PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF16Stateful(
|
/aosp_15_r20/external/python/cpython3/PC/ |
D | python3dll.c | 657 EXPORT_FUNC(PyUnicode_DecodeUTF16Stateful)
|
/aosp_15_r20/external/python/cpython2/Doc/c-api/ |
D | unicode.rst | 636 .. c:function:: PyObject* PyUnicode_DecodeUTF16Stateful(const char *s, Py_ssize_t size, const char … 639 *consumed* is not *NULL*, :c:func:`PyUnicode_DecodeUTF16Stateful` will not treat
|
/aosp_15_r20/external/python/cpython3/Doc/c-api/ |
D | unicode.rst | 1184 .. c:function:: PyObject* PyUnicode_DecodeUTF16Stateful(const char *s, Py_ssize_t size, \ 1188 *consumed* is not ``NULL``, :c:func:`PyUnicode_DecodeUTF16Stateful` will not treat
|
/aosp_15_r20/external/python/cpython3/Misc/ |
D | stable_abi.toml | 1494 [function.PyUnicode_DecodeUTF16Stateful]
|
D | HISTORY | 19839 ``PyUnicode_DecodeUTF16Stateful`` have been added, which implement stateful
|
/aosp_15_r20/external/python/cpython2/Objects/ |
D | unicodeobject.c | 2538 return PyUnicode_DecodeUTF16Stateful(s, size, errors, byteorder, NULL); in PyUnicode_DecodeUTF16() 2542 PyUnicode_DecodeUTF16Stateful(const char *s, in PyUnicode_DecodeUTF16Stateful() function
|
/aosp_15_r20/external/python/cpython3/Objects/ |
D | unicodeobject.c | 5964 return PyUnicode_DecodeUTF16Stateful(s, size, errors, byteorder, NULL); in PyUnicode_DecodeUTF16() 5968 PyUnicode_DecodeUTF16Stateful(const char *s, in PyUnicode_DecodeUTF16Stateful() function
|
/aosp_15_r20/external/python/cpython2/Misc/ |
D | HISTORY | 2455 ``PyUnicode_DecodeUTF16Stateful`` have been added, which implement stateful
|