Searched refs:repunicode (Results 1 – 1 of 1) sorted by relevance
/external/python/cpython3/Objects/ |
D | unicodeobject.c | 4231 PyObject *repunicode = NULL; in unicode_decode_call_errorhandler_wchar() local 4260 if (!PyArg_ParseTuple(restuple, argparse, &repunicode, &newpos)) in unicode_decode_call_errorhandler_wchar() 4282 repwlen = PyUnicode_AsWideChar(repunicode, NULL, 0); in unicode_decode_call_errorhandler_wchar() 4305 PyUnicode_AsWideChar(repunicode, *buf + *outpos, repwlen); in unicode_decode_call_errorhandler_wchar() 4335 PyObject *repunicode = NULL; in unicode_decode_call_errorhandler_writer() local 4365 if (!PyArg_ParseTuple(restuple, argparse, &repunicode, &newpos)) in unicode_decode_call_errorhandler_writer() 4388 replen = PyUnicode_GET_LENGTH(repunicode); in unicode_decode_call_errorhandler_writer() 4406 PyUnicode_MAX_CHAR_VALUE(repunicode)) == -1) in unicode_decode_call_errorhandler_writer() 4409 if (_PyUnicodeWriter_WriteStr(writer, repunicode) == -1) in unicode_decode_call_errorhandler_writer() 8461 PyObject *repunicode = NULL; /* initialize to prevent gcc warning */ in charmap_encoding_error() local [all …]
|