Home
last modified time | relevance | path

Searched refs:PyUnicode_DecodeUTF7Stateful (Results 1 – 8 of 8) sorted by relevance

/third_party/python/Include/
Dunicodeobject.h441 PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF7Stateful(
/third_party/python/Modules/
D_codecsmodule.c268 PyObject *decoded = PyUnicode_DecodeUTF7Stateful(data->buf, data->len, in _codecs_utf_7_decode_impl()
/third_party/python/Doc/data/
Drefcounts.dat2485 PyUnicode_DecodeUTF7Stateful:PyObject*::+1:
2486 PyUnicode_DecodeUTF7Stateful:const char*:s::
2487 PyUnicode_DecodeUTF7Stateful:Py_ssize_t:size::
2488 PyUnicode_DecodeUTF7Stateful:const char*:errors::
2489 PyUnicode_DecodeUTF7Stateful:Py_ssize_t*:consumed::
Dstable_abi.dat742 function,PyUnicode_DecodeUTF7Stateful,3.2,,
/third_party/python/PC/
Dpython3dll.c661 EXPORT_FUNC(PyUnicode_DecodeUTF7Stateful)
/third_party/python/Misc/
Dstable_abi.toml1564 [function.PyUnicode_DecodeUTF7Stateful]
/third_party/python/Doc/c-api/
Dunicode.rst1213 .. c:function:: PyObject* PyUnicode_DecodeUTF7Stateful(const char *s, Py_ssize_t size, \
/third_party/python/Objects/
Dunicodeobject.c4688 return PyUnicode_DecodeUTF7Stateful(s, size, errors, NULL); in PyUnicode_DecodeUTF7()
4699 PyUnicode_DecodeUTF7Stateful(const char *s, in PyUnicode_DecodeUTF7Stateful() function