Searched refs:restuple (Results 1 – 2 of 2) sorted by relevance
/third_party/python/Python/ |
D | codecs.c | 755 PyObject *restuple; in PyCodec_XMLCharRefReplaceErrors() local 840 restuple = Py_BuildValue("(Nn)", res, end); in PyCodec_XMLCharRefReplaceErrors() 842 return restuple; in PyCodec_XMLCharRefReplaceErrors() 962 PyObject *restuple; in PyCodec_NameReplaceErrors() local 1043 restuple = Py_BuildValue("(Nn)", res, end); in PyCodec_NameReplaceErrors() 1045 return restuple; in PyCodec_NameReplaceErrors() 1124 PyObject *restuple; in PyCodec_SurrogatePassErrors() local 1207 restuple = Py_BuildValue("(On)", res, end); in PyCodec_SurrogatePassErrors() 1210 return restuple; in PyCodec_SurrogatePassErrors() 1288 PyObject *restuple; in PyCodec_SurrogateEscapeErrors() local [all …]
|
/third_party/python/Objects/ |
D | unicodeobject.c | 4469 PyObject *restuple = NULL; in unicode_decode_call_errorhandler_wchar() local 4492 restuple = PyObject_CallOneArg(*errorHandler, *exceptionObject); in unicode_decode_call_errorhandler_wchar() 4493 if (restuple == NULL) in unicode_decode_call_errorhandler_wchar() 4495 if (!PyTuple_Check(restuple)) { in unicode_decode_call_errorhandler_wchar() 4499 if (!PyArg_ParseTuple(restuple, argparse, &repunicode, &newpos)) in unicode_decode_call_errorhandler_wchar() 4559 Py_DECREF(restuple); in unicode_decode_call_errorhandler_wchar() 4567 Py_XDECREF(restuple); in unicode_decode_call_errorhandler_wchar() 4582 PyObject *restuple = NULL; in unicode_decode_call_errorhandler_writer() local 4606 restuple = PyObject_CallOneArg(*errorHandler, *exceptionObject); in unicode_decode_call_errorhandler_writer() 4607 if (restuple == NULL) in unicode_decode_call_errorhandler_writer() [all …]
|