Home
last modified time | relevance | path

Searched refs:exceptionObject (Results 1 – 2 of 2) sorted by relevance

/third_party/python/Objects/
Dunicodeobject.c358 PyObject *unicode, PyObject **exceptionObject,
362 raise_encode_exception(PyObject **exceptionObject,
4412 make_decode_exception(PyObject **exceptionObject, in make_decode_exception() argument
4418 if (*exceptionObject == NULL) { in make_decode_exception()
4419 *exceptionObject = PyUnicodeDecodeError_Create( in make_decode_exception()
4423 if (PyUnicodeDecodeError_SetStart(*exceptionObject, startpos)) in make_decode_exception()
4425 if (PyUnicodeDecodeError_SetEnd(*exceptionObject, endpos)) in make_decode_exception()
4427 if (PyUnicodeDecodeError_SetReason(*exceptionObject, reason)) in make_decode_exception()
4433 Py_CLEAR(*exceptionObject); in make_decode_exception()
4464 Py_ssize_t *endinpos, PyObject **exceptionObject, const char **inptr, in unicode_decode_call_errorhandler_wchar() argument
[all …]
/third_party/typescript/tests/lib/
Dlib.d.ts11235 terminateApp(exceptionObject: any): void;