Home
last modified time | relevance | path

Searched refs:PyExc_UnicodeEncodeError (Results 1 – 16 of 16) sorted by relevance

/external/python/cpython3/Python/
Dcodecs.c682 if (PyObject_TypeCheck(exc, (PyTypeObject *)PyExc_UnicodeEncodeError)) { in PyCodec_IgnoreErrors()
706 if (PyObject_TypeCheck(exc, (PyTypeObject *)PyExc_UnicodeEncodeError)) { in PyCodec_ReplaceErrors()
759 if (PyObject_TypeCheck(exc, (PyTypeObject *)PyExc_UnicodeEncodeError)) { in PyCodec_XMLCharRefReplaceErrors()
893 if (PyObject_TypeCheck(exc, (PyTypeObject *)PyExc_UnicodeEncodeError)) { in PyCodec_BackslashReplaceErrors()
966 if (PyObject_TypeCheck(exc, (PyTypeObject *)PyExc_UnicodeEncodeError)) { in PyCodec_NameReplaceErrors()
1139 if (PyObject_TypeCheck(exc, (PyTypeObject *)PyExc_UnicodeEncodeError)) { in PyCodec_SurrogatePassErrors()
1299 if (PyObject_TypeCheck(exc, (PyTypeObject *)PyExc_UnicodeEncodeError)) { in PyCodec_SurrogateEscapeErrors()
Dimportdl.c63 if (PyErr_ExceptionMatches(PyExc_UnicodeEncodeError)) { in get_encoded_name()
Dsysmodule.c296 if (PyErr_ExceptionMatches(PyExc_UnicodeEncodeError)) { in sys_displayhook()
/external/python/cpython2/Python/
Dcodecs.c631 if (PyObject_TypeCheck(exc, (PyTypeObject *)PyExc_UnicodeEncodeError)) { in PyCodec_IgnoreErrors()
659 if (PyObject_TypeCheck(exc, (PyTypeObject *)PyExc_UnicodeEncodeError)) { in PyCodec_ReplaceErrors()
707 if (PyObject_TypeCheck(exc, (PyTypeObject *)PyExc_UnicodeEncodeError)) { in PyCodec_XMLCharRefReplaceErrors()
832 if (PyObject_TypeCheck(exc, (PyTypeObject *)PyExc_UnicodeEncodeError)) { in PyCodec_BackslashReplaceErrors()
/external/python/cpython2/Include/
Dpyerrors.h152 PyAPI_DATA(PyObject *) PyExc_UnicodeEncodeError;
/external/python/cpython3/Include/
Dpyerrors.h191 PyAPI_DATA(PyObject *) PyExc_UnicodeEncodeError;
/external/python/cpython3/PC/
Dpython3.def242 PyExc_UnicodeEncodeError=python37.PyExc_UnicodeEncodeError DATA
/external/python/cpython2/Objects/
Dexceptions.c1689 PyObject *PyExc_UnicodeEncodeError = (PyObject *)&_PyExc_UnicodeEncodeError; variable
1696 return PyObject_CallFunction(PyExc_UnicodeEncodeError, "su#nns", in PyUnicodeEncodeError_Create()
/external/python/cpython2/PC/os2emx/
Dpython27.def806 "PyExc_UnicodeEncodeError"
/external/python/cpython2/Doc/c-api/
Dexceptions.rst557 single: PyExc_UnicodeEncodeError
634 | :c:data:`PyExc_UnicodeEncodeError` | :exc:`UnicodeEncodeError` | |
/external/python/cpython3/Modules/
D_datetimemodule.c2821 if (PyErr_ExceptionMatches(PyExc_UnicodeEncodeError)) { in date_new()
3986 if (PyErr_ExceptionMatches(PyExc_UnicodeEncodeError)) { in time_new()
4655 if (PyErr_ExceptionMatches(PyExc_UnicodeEncodeError)) { in datetime_new()
5025 if (PyErr_ExceptionMatches(PyExc_UnicodeEncodeError)) { in datetime_fromisoformat()
D_pickle.c3492 if (PyErr_ExceptionMatches(PyExc_UnicodeEncodeError)) in save_global()
3511 if (PyErr_ExceptionMatches(PyExc_UnicodeEncodeError)) in save_global()
/external/python/cpython3/Objects/
Dexceptions.c1955 PyObject *PyExc_UnicodeEncodeError = (PyObject *)&_PyExc_UnicodeEncodeError; variable
1962 return PyObject_CallFunction(PyExc_UnicodeEncodeError, "su#nns", in PyUnicodeEncodeError_Create()
Dunicodeobject.c3416 exc = PyObject_CallFunction(PyExc_UnicodeEncodeError, "sOnns", in unicode_encode_locale()
6630 PyExc_UnicodeEncodeError, "sOnns", in make_encode_exception()
/external/python/cpython3/Doc/c-api/
Dexceptions.rst811 single: PyExc_UnicodeEncodeError
916 | :c:data:`PyExc_UnicodeEncodeError` | :exc:`UnicodeEncodeError` | |
/external/python/cpython3/Modules/cjkcodecs/
Dmultibytecodec.c281 buf->excobj = PyObject_CallFunction(PyExc_UnicodeEncodeError, in multibytecodec_encerror()