Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/
Dexceptions.c1633 PyUnicodeErrorObject *uself = (PyUnicodeErrorObject *)self; in UnicodeEncodeError_str() local
1638 if (!uself->object) in UnicodeEncodeError_str()
1644 reason_str = PyObject_Str(uself->reason); in UnicodeEncodeError_str()
1647 encoding_str = PyObject_Str(uself->encoding); in UnicodeEncodeError_str()
1651 if (uself->start < PyUnicode_GET_SIZE(uself->object) && uself->end == uself->start+1) { in UnicodeEncodeError_str()
1652 int badchar = (int)PyUnicode_AS_UNICODE(uself->object)[uself->start]; in UnicodeEncodeError_str()
1664 uself->start, in UnicodeEncodeError_str()
1671 uself->start, in UnicodeEncodeError_str()
1672 uself->end-1, in UnicodeEncodeError_str()
1722 PyUnicodeErrorObject *uself = (PyUnicodeErrorObject *)self; in UnicodeDecodeError_str() local
[all …]