Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/
Dunicodeobject.c4895 Py_ssize_t i_newpos; in unicode_translate_call_errorhandler() local
4920 &resunicode, &i_newpos)) { in unicode_translate_call_errorhandler()
4924 if (i_newpos<0) in unicode_translate_call_errorhandler()
4925 *newpos = size+i_newpos; in unicode_translate_call_errorhandler()
4927 *newpos = i_newpos; in unicode_translate_call_errorhandler()
/external/python/cpython3/Objects/
Dunicodeobject.c8873 Py_ssize_t i_newpos; in unicode_translate_call_errorhandler() local
8897 &resunicode, &i_newpos)) { in unicode_translate_call_errorhandler()
8901 if (i_newpos<0) in unicode_translate_call_errorhandler()
8902 *newpos = PyUnicode_GET_LENGTH(unicode)+i_newpos; in unicode_translate_call_errorhandler()
8904 *newpos = i_newpos; in unicode_translate_call_errorhandler()