Home
last modified time | relevance | path

Searched refs:decoded_chars (Results 1 - 2 of 2) sorted by relevance

/third_party/python/Modules/_io/
H A Dtextio.c667 PyObject *decoded_chars; /* buffer for text returned from decoder */ member
1112 Py_CLEAR(self->decoded_chars); in _io_TextIOWrapper___init___impl()
1331 if (self->decoded_chars != NULL) { in _io_TextIOWrapper_reconfigure_impl()
1384 Py_CLEAR(self->decoded_chars); in textiowrapper_clear()
1416 Py_VISIT(self->decoded_chars); in textiowrapper_traverse()
1724 Py_XSETREF(self->decoded_chars, chars); in textiowrapper_set_decoded_chars()
1734 if (self->decoded_chars == NULL) in textiowrapper_get_decoded_chars()
1737 /* decoded_chars is guaranteed to be "ready". */ in textiowrapper_get_decoded_chars()
1738 avail = (PyUnicode_GET_LENGTH(self->decoded_chars) in textiowrapper_get_decoded_chars()
1747 chars = PyUnicode_Substring(self->decoded_chars, in textiowrapper_get_decoded_chars()
1771 PyObject *decoded_chars, *chunk_size; textiowrapper_read_chunk() local
[all...]
/third_party/python/Lib/
H A D_pyio.py2276 raise AssertionError("rewind decoded_chars out of bounds")
2307 decoded_chars = self._decoder.decode(input_chunk, eof)
2308 self._set_decoded_chars(decoded_chars)
2309 if decoded_chars:

Completed in 8 milliseconds