Searched refs:restuple (Results 1 – 4 of 4) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
D | codecs.c | 498 PyObject *restuple; in PyCodec_ReplaceErrors() local 516 restuple = Py_BuildValue("(On)", res, end); in PyCodec_ReplaceErrors() 518 return restuple; in PyCodec_ReplaceErrors() 539 restuple = Py_BuildValue("(On)", res, end); in PyCodec_ReplaceErrors() 541 return restuple; in PyCodec_ReplaceErrors() 552 PyObject *restuple; in PyCodec_XMLCharRefReplaceErrors() local 658 restuple = Py_BuildValue("(On)", res, end); in PyCodec_XMLCharRefReplaceErrors() 661 return restuple; in PyCodec_XMLCharRefReplaceErrors() 677 PyObject *restuple; in PyCodec_BackslashReplaceErrors() local 739 restuple = Py_BuildValue("(On)", res, end); in PyCodec_BackslashReplaceErrors() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
D | codecs.c | 498 PyObject *restuple; in PyCodec_ReplaceErrors() local 516 restuple = Py_BuildValue("(On)", res, end); in PyCodec_ReplaceErrors() 518 return restuple; in PyCodec_ReplaceErrors() 539 restuple = Py_BuildValue("(On)", res, end); in PyCodec_ReplaceErrors() 541 return restuple; in PyCodec_ReplaceErrors() 552 PyObject *restuple; in PyCodec_XMLCharRefReplaceErrors() local 645 restuple = Py_BuildValue("(On)", res, end); in PyCodec_XMLCharRefReplaceErrors() 648 return restuple; in PyCodec_XMLCharRefReplaceErrors() 664 PyObject *restuple; in PyCodec_BackslashReplaceErrors() local 722 restuple = Py_BuildValue("(On)", res, end); in PyCodec_BackslashReplaceErrors() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
D | unicodeobject.c | 1465 PyObject *restuple = NULL; in unicode_decode_call_errorhandler() local 1495 restuple = PyObject_CallFunctionObjArgs(*errorHandler, *exceptionObject, NULL); in unicode_decode_call_errorhandler() 1496 if (restuple == NULL) in unicode_decode_call_errorhandler() 1498 if (!PyTuple_Check(restuple)) { in unicode_decode_call_errorhandler() 1502 if (!PyArg_ParseTuple(restuple, argparse, &PyUnicode_Type, &repunicode, &newpos)) in unicode_decode_call_errorhandler() 1540 Py_XDECREF(restuple); in unicode_decode_call_errorhandler() 3568 PyObject *restuple; in unicode_encode_call_errorhandler() local 3582 restuple = PyObject_CallFunctionObjArgs( in unicode_encode_call_errorhandler() 3584 if (restuple == NULL) in unicode_encode_call_errorhandler() 3586 if (!PyTuple_Check(restuple)) { in unicode_encode_call_errorhandler() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
D | unicodeobject.c | 1407 PyObject *restuple = NULL; in unicode_decode_call_errorhandler() local 1437 restuple = PyObject_CallFunctionObjArgs(*errorHandler, *exceptionObject, NULL); in unicode_decode_call_errorhandler() 1438 if (restuple == NULL) in unicode_decode_call_errorhandler() 1440 if (!PyTuple_Check(restuple)) { in unicode_decode_call_errorhandler() 1444 if (!PyArg_ParseTuple(restuple, argparse, &PyUnicode_Type, &repunicode, &newpos)) in unicode_decode_call_errorhandler() 1476 Py_XDECREF(restuple); in unicode_decode_call_errorhandler() 3524 PyObject *restuple; in unicode_encode_call_errorhandler() local 3538 restuple = PyObject_CallFunctionObjArgs( in unicode_encode_call_errorhandler() 3540 if (restuple == NULL) in unicode_encode_call_errorhandler() 3542 if (!PyTuple_Check(restuple)) { in unicode_encode_call_errorhandler() [all …]
|