Home
last modified time | relevance | path

Searched refs:PyUnicode_DecodeUTF16Stateful (Results 1 – 13 of 13) sorted by relevance

/external/python/cpython3/Modules/
D_codecsmodule.c308 PyObject *decoded = PyUnicode_DecodeUTF16Stateful(data->buf, data->len, in _codecs_utf_16_decode_impl()
330 PyObject *decoded = PyUnicode_DecodeUTF16Stateful(data->buf, data->len, in _codecs_utf_16_le_decode_impl()
352 PyObject *decoded = PyUnicode_DecodeUTF16Stateful(data->buf, data->len, in _codecs_utf_16_be_decode_impl()
382 PyObject *decoded = PyUnicode_DecodeUTF16Stateful(data->buf, data->len, in _codecs_utf_16_ex_decode_impl()
/external/python/cpython2/Modules/
D_codecsmodule.c293 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()
/external/python/cpython2/Include/
Dunicodeobject.h173 # define PyUnicode_DecodeUTF16Stateful PyUnicodeUCS2_DecodeUTF16Stateful macro
260 # define PyUnicode_DecodeUTF16Stateful PyUnicodeUCS4_DecodeUTF16Stateful macro
881 PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF16Stateful(
/external/python/cpython2/Doc/data/
Drefcounts.dat1515 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::
/external/python/cpython3/Include/
Dunicodeobject.h569 PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF16Stateful(
/external/python/cpython3/Doc/data/
Drefcounts.dat2483 PyUnicode_DecodeUTF16Stateful:PyObject*::+1:
2484 PyUnicode_DecodeUTF16Stateful:const char*:s::
2485 PyUnicode_DecodeUTF16Stateful:Py_ssize_t:size::
2486 PyUnicode_DecodeUTF16Stateful:const char*:errors::
2487 PyUnicode_DecodeUTF16Stateful:int*:byteorder::
2488 PyUnicode_DecodeUTF16Stateful:Py_ssize_t*:consumed::
/external/python/cpython3/PC/
Dpython3.def668 PyUnicode_DecodeUTF16Stateful=python39.PyUnicode_DecodeUTF16Stateful
/external/python/cpython2/Doc/c-api/
Dunicode.rst636 .. 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
/external/python/cpython3/Doc/c-api/
Dunicode.rst1247 .. c:function:: PyObject* PyUnicode_DecodeUTF16Stateful(const char *s, Py_ssize_t size, \
1251 *consumed* is not ``NULL``, :c:func:`PyUnicode_DecodeUTF16Stateful` will not treat
/external/python/cpython2/Objects/
Dunicodeobject.c2538 return PyUnicode_DecodeUTF16Stateful(s, size, errors, byteorder, NULL); in PyUnicode_DecodeUTF16()
2542 PyUnicode_DecodeUTF16Stateful(const char *s, in PyUnicode_DecodeUTF16Stateful() function
/external/python/cpython3/Objects/
Dunicodeobject.c5880 return PyUnicode_DecodeUTF16Stateful(s, size, errors, byteorder, NULL); in PyUnicode_DecodeUTF16()
5884 PyUnicode_DecodeUTF16Stateful(const char *s, in PyUnicode_DecodeUTF16Stateful() function
/external/python/cpython2/Misc/
DHISTORY2455 ``PyUnicode_DecodeUTF16Stateful`` have been added, which implement stateful
/external/python/cpython3/Misc/
DHISTORY19839 ``PyUnicode_DecodeUTF16Stateful`` have been added, which implement stateful