Home
last modified time | relevance | path

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

/external/python/cpython3/Python/
Dcodecs.c663 if (PyObject_TypeCheck(exc, (PyTypeObject *)PyExc_UnicodeEncodeError)) { in PyCodec_IgnoreErrors()
687 if (PyObject_TypeCheck(exc, (PyTypeObject *)PyExc_UnicodeEncodeError)) { in PyCodec_ReplaceErrors()
738 if (PyObject_TypeCheck(exc, (PyTypeObject *)PyExc_UnicodeEncodeError)) { in PyCodec_XMLCharRefReplaceErrors()
872 if (PyObject_TypeCheck(exc, (PyTypeObject *)PyExc_UnicodeEncodeError)) { in PyCodec_BackslashReplaceErrors()
943 if (PyObject_TypeCheck(exc, (PyTypeObject *)PyExc_UnicodeEncodeError)) { in PyCodec_NameReplaceErrors()
1113 if (PyObject_TypeCheck(exc, (PyTypeObject *)PyExc_UnicodeEncodeError)) { in PyCodec_SurrogatePassErrors()
1273 if (PyObject_TypeCheck(exc, (PyTypeObject *)PyExc_UnicodeEncodeError)) { in PyCodec_SurrogateEscapeErrors()
Dimportdl.c77 if (PyErr_ExceptionMatches(PyExc_UnicodeEncodeError)) { in get_encoded_name()
Dsysmodule.c757 if (_PyErr_ExceptionMatches(tstate, PyExc_UnicodeEncodeError)) { in sys_displayhook()
/external/python/cpython3/Modules/cjkcodecs/
Dmultibytecodec.c308 buf->excobj = PyObject_CallFunction(PyExc_UnicodeEncodeError, in multibytecodec_encerror()
828 PyObject *excobj = PyObject_CallFunction(PyExc_UnicodeEncodeError, in encoder_encode_stateful()
835 PyErr_SetObject(PyExc_UnicodeEncodeError, excobj); in encoder_encode_stateful()
957 PyObject *excobj = PyObject_CallFunction(PyExc_UnicodeEncodeError, in _multibytecodec_MultibyteIncrementalEncoder_getstate_impl()
966 PyErr_SetObject(PyExc_UnicodeEncodeError, excobj); in _multibytecodec_MultibyteIncrementalEncoder_getstate_impl()
/external/python/cpython3/Include/
Dpyerrors.h117 PyAPI_DATA(PyObject *) PyExc_UnicodeEncodeError;
/external/python/cpython3/Tools/c-analyzer/cpython/
Dglobals-to-fix.tsv275 Objects/exceptions.c - PyExc_UnicodeEncodeError -
/external/python/cpython3/PC/
Dpython3dll.c876 EXPORT_DATA(PyExc_UnicodeEncodeError)
/external/python/cpython3/Doc/data/
Dstable_abi.dat262 data,PyExc_UnicodeEncodeError,3.2,,
Dpython3.13.abi1567 …<elf-symbol name='PyExc_UnicodeEncodeError' size='8' type='object-type' binding='global-binding' v…
6628PyExc_UnicodeEncodeError' type-id='type-id-4' mangled-name='PyExc_UnicodeEncodeError' visibility='…
/external/python/cpython3/Modules/
D_datetimemodule.c3136 if (PyErr_ExceptionMatches(PyExc_UnicodeEncodeError)) { in date_new()
4519 if (PyErr_ExceptionMatches(PyExc_UnicodeEncodeError)) { in time_new()
5185 if (PyErr_ExceptionMatches(PyExc_UnicodeEncodeError)) { in datetime_new()
5707 if (PyErr_ExceptionMatches(PyExc_UnicodeEncodeError)) { in datetime_fromisoformat()
D_pickle.c3789 if (PyErr_ExceptionMatches(PyExc_UnicodeEncodeError)) in save_global()
3808 if (PyErr_ExceptionMatches(PyExc_UnicodeEncodeError)) in save_global()
D_ssl.c4272 if (PyErr_ExceptionMatches(PyExc_UnicodeEncodeError)) { in _ssl__SSLContext_load_verify_locations_impl()
/external/python/cpython3/Doc/c-api/
Dexceptions.rst1021 single: PyExc_UnicodeEncodeError (C var)
1128 | :c:data:`PyExc_UnicodeEncodeError` | :exc:`UnicodeEncodeError` | |
/external/python/cpython3/Tools/c-analyzer/
DTODO714 Objects/exceptions.c:PyExc_UnicodeEncodeError static PyTypeObject PyExc_UnicodeE…
/external/python/cpython3/Misc/
Dstable_abi.toml797 [data.PyExc_UnicodeEncodeError]
/external/python/cpython3/Objects/
Dexceptions.c3031 PyObject *PyExc_UnicodeEncodeError = (PyObject *)&_PyExc_UnicodeEncodeError; variable
Dunicodeobject.c3663 exc = PyObject_CallFunction(PyExc_UnicodeEncodeError, "sOnns", in unicode_encode_locale()
6773 PyExc_UnicodeEncodeError, "sOnns", in make_encode_exception()
Dtypeobject.c10881 && typeobj != PyExc_UnicodeEncodeError in expect_manually_inherited()