Home
last modified time | relevance | path

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

/third_party/python/Objects/
Dgenericaliasobject.c130 if (_PyUnicodeWriter_WriteASCIIString(&writer, "[", 1) < 0) { in ga_repr()
135 if (_PyUnicodeWriter_WriteASCIIString(&writer, ", ", 2) < 0) { in ga_repr()
146 if (_PyUnicodeWriter_WriteASCIIString(&writer, "()", 2) < 0) { in ga_repr()
150 if (_PyUnicodeWriter_WriteASCIIString(&writer, "]", 1) < 0) { in ga_repr()
Dunionobject.c269 return _PyUnicodeWriter_WriteASCIIString(writer, "None", 4); in union_repr_item()
336 if (i > 0 && _PyUnicodeWriter_WriteASCIIString(&writer, " | ", 3) < 0) { in union_repr()
Dtupleobject.c341 if (_PyUnicodeWriter_WriteASCIIString(&writer, ", ", 2) < 0) in tuplerepr()
362 if (_PyUnicodeWriter_WriteASCIIString(&writer, ",)", 2) < 0) in tuplerepr()
Dstructseq.c269 if (_PyUnicodeWriter_WriteASCIIString(&writer, ", ", 2) < 0) { in structseq_repr()
Ddictobject.c2132 if (_PyUnicodeWriter_WriteASCIIString(&writer, ", ", 2) < 0) in dict_repr()
2145 if (_PyUnicodeWriter_WriteASCIIString(&writer, ": ", 2) < 0) in dict_repr()
Dunicodeobject.c3005 if (_PyUnicodeWriter_WriteASCIIString(writer, buffer, len) < 0) in unicode_fromformat_arg()
3028 if (_PyUnicodeWriter_WriteASCIIString(writer, number, len) < 0) in unicode_fromformat_arg()
3180 if (_PyUnicodeWriter_WriteASCIIString(&writer, f, len) < 0) in PyUnicode_FromFormatV()
14283 _PyUnicodeWriter_WriteASCIIString(_PyUnicodeWriter *writer, in _PyUnicodeWriter_WriteASCIIString() function
14722 if (_PyUnicodeWriter_WriteASCIIString(writer, p, len) < 0) { in formatfloat()
Dlistobject.c389 if (_PyUnicodeWriter_WriteASCIIString(&writer, ", ", 2) < 0) in list_repr()
/third_party/python/Python/
Dcontext.c907 if (_PyUnicodeWriter_WriteASCIIString( in contextvar_tp_repr()
924 if (_PyUnicodeWriter_WriteASCIIString(&writer, " default=", 9) < 0) { in contextvar_tp_repr()
1127 if (_PyUnicodeWriter_WriteASCIIString(&writer, "<Token", 6) < 0) { in token_tp_repr()
1132 if (_PyUnicodeWriter_WriteASCIIString(&writer, " used", 5) < 0) { in token_tp_repr()
1137 if (_PyUnicodeWriter_WriteASCIIString(&writer, " var=", 5) < 0) { in token_tp_repr()
Dast_unparse.c33 return _PyUnicodeWriter_WriteASCIIString(writer, charp, -1); in append_charp()
710 if (-1 == _PyUnicodeWriter_WriteASCIIString(writer, ":", 1) || in append_formattedvalue()
Dformatter_unicode.c1110 result = _PyUnicodeWriter_WriteASCIIString(writer, buf, n_digits); in format_float_internal()
/third_party/python/Include/cpython/
Dunicodeobject.h694 _PyUnicodeWriter_WriteASCIIString(_PyUnicodeWriter *writer,