Lines Matching defs:writer
52 ga_repr_item(_PyUnicodeWriter *writer, PyObject *p)
118 err = _PyUnicodeWriter_WriteStr(writer, r);
130 _PyUnicodeWriter writer;
131 _PyUnicodeWriter_Init(&writer);
134 if (_PyUnicodeWriter_WriteASCIIString(&writer, "*", 1) < 0) {
138 if (ga_repr_item(&writer, alias->origin) < 0) {
141 if (_PyUnicodeWriter_WriteASCIIString(&writer, "[", 1) < 0) {
146 if (_PyUnicodeWriter_WriteASCIIString(&writer, ", ", 2) < 0) {
151 if (ga_repr_item(&writer, p) < 0) {
157 if (_PyUnicodeWriter_WriteASCIIString(&writer, "()", 2) < 0) {
161 if (_PyUnicodeWriter_WriteASCIIString(&writer, "]", 1) < 0) {
164 return _PyUnicodeWriter_Finish(&writer);
166 _PyUnicodeWriter_Dealloc(&writer);