Home
last modified time | relevance | path

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

/third_party/python/Python/
Dcontext.c915 if (_PyUnicodeWriter_WriteASCIIString( in contextvar_tp_repr()
932 if (_PyUnicodeWriter_WriteASCIIString(&writer, " default=", 9) < 0) { in contextvar_tp_repr()
1135 if (_PyUnicodeWriter_WriteASCIIString(&writer, "<Token", 6) < 0) { in token_tp_repr()
1140 if (_PyUnicodeWriter_WriteASCIIString(&writer, " used", 5) < 0) { in token_tp_repr()
1145 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.c1131 result = _PyUnicodeWriter_WriteASCIIString(writer, buf, n_digits); in format_float_internal()
/third_party/python/Objects/
Dgenericaliasobject.c134 if (_PyUnicodeWriter_WriteASCIIString(&writer, "*", 1) < 0) { in ga_repr()
141 if (_PyUnicodeWriter_WriteASCIIString(&writer, "[", 1) < 0) { in ga_repr()
146 if (_PyUnicodeWriter_WriteASCIIString(&writer, ", ", 2) < 0) { in ga_repr()
157 if (_PyUnicodeWriter_WriteASCIIString(&writer, "()", 2) < 0) { in ga_repr()
161 if (_PyUnicodeWriter_WriteASCIIString(&writer, "]", 1) < 0) { in ga_repr()
Dunionobject.c192 return _PyUnicodeWriter_WriteASCIIString(writer, "None", 4); in union_repr_item()
259 if (i > 0 && _PyUnicodeWriter_WriteASCIIString(&writer, " | ", 3) < 0) { in union_repr()
Dtupleobject.c256 if (_PyUnicodeWriter_WriteASCIIString(&writer, ", ", 2) < 0) in tuplerepr()
277 if (_PyUnicodeWriter_WriteASCIIString(&writer, ",)", 2) < 0) in tuplerepr()
Dstructseq.c264 if (_PyUnicodeWriter_WriteASCIIString(&writer, ", ", 2) < 0) { in structseq_repr()
Dunicodeobject.c2951 if (_PyUnicodeWriter_WriteASCIIString(writer, buffer, len) < 0) in unicode_fromformat_arg()
2974 if (_PyUnicodeWriter_WriteASCIIString(writer, number, len) < 0) in unicode_fromformat_arg()
3126 if (_PyUnicodeWriter_WriteASCIIString(&writer, f, len) < 0) in PyUnicode_FromFormatV()
13987 _PyUnicodeWriter_WriteASCIIString(_PyUnicodeWriter *writer, in _PyUnicodeWriter_WriteASCIIString() function
14420 if (_PyUnicodeWriter_WriteASCIIString(writer, p, len) < 0) { in formatfloat()
Ddictobject.c2438 if (_PyUnicodeWriter_WriteASCIIString(&writer, ", ", 2) < 0) in dict_repr()
2451 if (_PyUnicodeWriter_WriteASCIIString(&writer, ": ", 2) < 0) in dict_repr()
Dlistobject.c407 if (_PyUnicodeWriter_WriteASCIIString(&writer, ", ", 2) < 0) in list_repr()
/third_party/python/Include/cpython/
Dunicodeobject.h809 _PyUnicodeWriter_WriteASCIIString(_PyUnicodeWriter *writer,