Home
last modified time | relevance | path

Searched refs:PyUnicode_DecodeUTF8Stateful (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Include/
Dunicodeobject.h175 # define PyUnicode_DecodeUTF8Stateful PyUnicodeUCS2_DecodeUTF8Stateful macro
262 # define PyUnicode_DecodeUTF8Stateful PyUnicodeUCS4_DecodeUTF8Stateful macro
756 PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF8Stateful(
/external/python/cpython2/Doc/data/
Drefcounts.dat1522 PyUnicode_DecodeUTF8Stateful:PyObject*::+1:
1523 PyUnicode_DecodeUTF8Stateful:const char*:s::
1524 PyUnicode_DecodeUTF8Stateful:int:size::
1525 PyUnicode_DecodeUTF8Stateful:const char*:errors::
1526 PyUnicode_DecodeUTF8Stateful:int*:consumed::
/external/python/cpython2/Modules/
D_codecsmodule.c270 decoded = PyUnicode_DecodeUTF8Stateful(pbuf.buf, pbuf.len, errors, in utf_8_decode()
/external/python/cpython2/Objects/
Dunicodeobject.c1962 return PyUnicode_DecodeUTF8Stateful(s, size, errors, NULL); in PyUnicode_DecodeUTF8()
1965 PyObject *PyUnicode_DecodeUTF8Stateful(const char *s, in PyUnicode_DecodeUTF8Stateful() function
/external/python/cpython2/Doc/c-api/
Dunicode.rst492 .. c:function:: PyObject* PyUnicode_DecodeUTF8Stateful(const char *s, Py_ssize_t size, const char *…
/external/python/cpython2/Misc/
DHISTORY2454 - SF patch #998993: ``PyUnicode_DecodeUTF8Stateful`` and