Lines Matching defs:writer
911 _PyUnicodeWriter writer;
913 _PyUnicodeWriter_Init(&writer);
916 &writer, "<ContextVar name=", 17) < 0)
925 if (_PyUnicodeWriter_WriteStr(&writer, name) < 0) {
932 if (_PyUnicodeWriter_WriteASCIIString(&writer, " default=", 9) < 0) {
940 if (_PyUnicodeWriter_WriteStr(&writer, def) < 0) {
951 if (_PyUnicodeWriter_WriteStr(&writer, addr) < 0) {
957 return _PyUnicodeWriter_Finish(&writer);
960 _PyUnicodeWriter_Dealloc(&writer);
1131 _PyUnicodeWriter writer;
1133 _PyUnicodeWriter_Init(&writer);
1135 if (_PyUnicodeWriter_WriteASCIIString(&writer, "<Token", 6) < 0) {
1140 if (_PyUnicodeWriter_WriteASCIIString(&writer, " used", 5) < 0) {
1145 if (_PyUnicodeWriter_WriteASCIIString(&writer, " var=", 5) < 0) {
1153 if (_PyUnicodeWriter_WriteStr(&writer, var) < 0) {
1163 if (_PyUnicodeWriter_WriteStr(&writer, addr) < 0) {
1169 return _PyUnicodeWriter_Finish(&writer);
1172 _PyUnicodeWriter_Dealloc(&writer);