Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dcodecs.h108 PyAPI_FUNC(PyObject *) _PyCodec_DecodeText(
/external/python/cpython3/Include/
Dcodecs.h126 PyAPI_FUNC(PyObject *) _PyCodec_DecodeText(
/external/python/cpython2/Python/
Dcodecs.c544 PyObject *_PyCodec_DecodeText(PyObject *object, in _PyCodec_DecodeText() function
/external/python/cpython3/Python/
Dcodecs.c608 PyObject *_PyCodec_DecodeText(PyObject *object, in _PyCodec_DecodeText() function
/external/python/cpython2/Objects/
Dbytearrayobject.c2591 return _PyCodec_DecodeText(self, encoding, errors); in bytearray_decode()
Dunicodeobject.c1261 unicode = _PyCodec_DecodeText(buffer, encoding, errors); in PyUnicode_Decode()
1297 v = _PyCodec_DecodeText(unicode, encoding, errors); in PyUnicode_AsDecodedObject()
Dstringobject.c452 v = _PyCodec_DecodeText(str, encoding, errors); in PyString_AsDecodedObject()
/external/python/cpython3/Objects/
Dunicodeobject.c3237 unicode = _PyCodec_DecodeText(buffer, encoding, errors); in PyUnicode_Decode()