Lines Matching defs:writer
235 _PyUnicodeWriter writer;
245 _PyUnicodeWriter_Init(&writer);
246 writer.overallocate = 1;
248 writer.min_length = (PyUnicode_GET_LENGTH(type_name) + 1
251 if (_PyUnicodeWriter_WriteStr(&writer, type_name) < 0) {
257 if (_PyUnicodeWriter_WriteChar(&writer, '(') < 0) {
264 if (_PyUnicodeWriter_WriteASCIIString(&writer, ", ", 2) < 0) {
281 if (_PyUnicodeWriter_WriteStr(&writer, name) < 0) {
287 if (_PyUnicodeWriter_WriteChar(&writer, '=') < 0) {
297 if (_PyUnicodeWriter_WriteStr(&writer, repr) < 0) {
304 if (_PyUnicodeWriter_WriteChar(&writer, ')') < 0) {
308 return _PyUnicodeWriter_Finish(&writer);
311 _PyUnicodeWriter_Dealloc(&writer);