Home
last modified time | relevance | path

Searched refs:PyCodec_Decode (Results 1 – 12 of 12) sorted by relevance

/external/python/cpython2/Include/
Dcodecs.h78 PyAPI_FUNC(PyObject *) PyCodec_Decode(
/external/python/cpython3/Include/
Dcodecs.h95 PyAPI_FUNC(PyObject *) PyCodec_Decode(
/external/python/cpython3/Doc/c-api/
Dcodec.rst27 .. c:function:: PyObject* PyCodec_Decode(PyObject *object, const char *encoding, const char *errors)
/external/python/cpython2/Doc/c-api/
Dcodec.rst27 .. c:function:: PyObject* PyCodec_Decode(PyObject *object, const char *encoding, const char *errors)
/external/python/cpython3/PC/
Dpython3.def62 PyCodec_Decode=python37.PyCodec_Decode
/external/python/cpython3/Modules/
D_codecsmodule.c138 return PyCodec_Decode(obj, encoding, errors); in _codecs_decode_impl()
/external/python/cpython2/Python/
Dcodecs.c438 PyObject *PyCodec_Decode(PyObject *object, in PyCodec_Decode() function
/external/python/cpython3/Doc/data/
Drefcounts.dat270 PyCodec_Decode:PyObject*::+1:
271 PyCodec_Decode:PyObject*:object:0:
272 PyCodec_Decode:const char*:encoding::
273 PyCodec_Decode:const char*:errors::
/external/python/cpython2/PC/os2emx/
Dpython27.def875 "PyCodec_Decode"
/external/python/cpython2/Modules/
D_codecsmodule.c142 return PyCodec_Decode(v, encoding, errors); in codec_decode()
/external/python/cpython3/Python/
Dcodecs.c512 PyObject *PyCodec_Decode(PyObject *object, in PyCodec_Decode() function
/external/python/cpython3/Objects/
Dunicodeobject.c3276 return PyCodec_Decode(unicode, encoding, errors); in PyUnicode_AsDecodedObject()
3300 v = PyCodec_Decode(unicode, encoding, errors); in PyUnicode_AsDecodedUnicode()