Searched refs:collstart (Results 1 – 1 of 1) sorted by relevance
/third_party/python/Objects/ |
D | unicodeobject.c | 732 PyObject *unicode, Py_ssize_t collstart, Py_ssize_t collend) in backslashreplace() argument 745 for (i = collstart; i < collend; ++i) { in backslashreplace() 770 for (i = collstart; i < collend; ++i) { in backslashreplace() 799 PyObject *unicode, Py_ssize_t collstart, Py_ssize_t collend) in xmlcharrefreplace() argument 812 for (i = collstart; i < collend; ++i) { in xmlcharrefreplace() 845 for (i = collstart; i < collend; ++i) { in xmlcharrefreplace() 7230 Py_ssize_t collstart = pos; in unicode_encode_ucs1() local 7231 Py_ssize_t collend = collstart + 1; in unicode_encode_ucs1() 7246 raise_encode_exception(&exc, encoding, unicode, collstart, collend, reason); in unicode_encode_ucs1() 7250 memset(str, '?', collend - collstart); in unicode_encode_ucs1() [all …]
|