Home
last modified time | relevance | path

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

/third_party/python/Objects/
Dunicodeobject.c4470 PyObject *repunicode = NULL; in unicode_decode_call_errorhandler_wchar() local
4499 if (!PyArg_ParseTuple(restuple, argparse, &repunicode, &newpos)) in unicode_decode_call_errorhandler_wchar()
4524 repwlen = PyUnicode_GetSize(repunicode); in unicode_decode_call_errorhandler_wchar()
4529 repwlen = PyUnicode_AsWideChar(repunicode, NULL, 0); in unicode_decode_call_errorhandler_wchar()
4553 PyUnicode_AsWideChar(repunicode, *buf + *outpos, repwlen); in unicode_decode_call_errorhandler_wchar()
4583 PyObject *repunicode = NULL; in unicode_decode_call_errorhandler_writer() local
4613 if (!PyArg_ParseTuple(restuple, argparse, &repunicode, &newpos)) in unicode_decode_call_errorhandler_writer()
4636 replen = PyUnicode_GET_LENGTH(repunicode); in unicode_decode_call_errorhandler_writer()
4654 PyUnicode_MAX_CHAR_VALUE(repunicode)) == -1) in unicode_decode_call_errorhandler_writer()
4657 if (_PyUnicodeWriter_WriteStr(writer, repunicode) == -1) in unicode_decode_call_errorhandler_writer()
[all …]