Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dgenericaliasobject.c129 if (_PyUnicodeWriter_WriteASCIIString(&writer, "[", 1) < 0) { in ga_repr()
134 if (_PyUnicodeWriter_WriteASCIIString(&writer, ", ", 2) < 0) { in ga_repr()
145 if (_PyUnicodeWriter_WriteASCIIString(&writer, "()", 2) < 0) { in ga_repr()
149 if (_PyUnicodeWriter_WriteASCIIString(&writer, "]", 1) < 0) { in ga_repr()
Dtupleobject.c295 if (_PyUnicodeWriter_WriteASCIIString(&writer, ", ", 2) < 0) in tuplerepr()
316 if (_PyUnicodeWriter_WriteASCIIString(&writer, ",)", 2) < 0) in tuplerepr()
Dstructseq.c230 if (_PyUnicodeWriter_WriteASCIIString(&writer, ", ", 2) < 0) { in structseq_repr()
Ddictobject.c2080 if (_PyUnicodeWriter_WriteASCIIString(&writer, ", ", 2) < 0) in dict_repr()
2093 if (_PyUnicodeWriter_WriteASCIIString(&writer, ": ", 2) < 0) in dict_repr()
Dunicodeobject.c2904 if (_PyUnicodeWriter_WriteASCIIString(writer, buffer, len) < 0) in unicode_fromformat_arg()
2927 if (_PyUnicodeWriter_WriteASCIIString(writer, number, len) < 0) in unicode_fromformat_arg()
3079 if (_PyUnicodeWriter_WriteASCIIString(&writer, f, len) < 0) in PyUnicode_FromFormatV()
14023 _PyUnicodeWriter_WriteASCIIString(_PyUnicodeWriter *writer, in _PyUnicodeWriter_WriteASCIIString() function
14462 if (_PyUnicodeWriter_WriteASCIIString(writer, p, len) < 0) { in formatfloat()
Dlistobject.c375 if (_PyUnicodeWriter_WriteASCIIString(&writer, ", ", 2) < 0) in list_repr()
/external/python/cpython3/Python/
Dcontext.c891 if (_PyUnicodeWriter_WriteASCIIString( in contextvar_tp_repr()
908 if (_PyUnicodeWriter_WriteASCIIString(&writer, " default=", 9) < 0) { in contextvar_tp_repr()
1111 if (_PyUnicodeWriter_WriteASCIIString(&writer, "<Token", 6) < 0) { in token_tp_repr()
1116 if (_PyUnicodeWriter_WriteASCIIString(&writer, " used", 5) < 0) { in token_tp_repr()
1121 if (_PyUnicodeWriter_WriteASCIIString(&writer, " var=", 5) < 0) { in token_tp_repr()
Dast_unparse.c28 return _PyUnicodeWriter_WriteASCIIString(writer, charp, -1); in append_charp()
705 if (-1 == _PyUnicodeWriter_WriteASCIIString(writer, ":", 1) || in append_formattedvalue()
Dformatter_unicode.c1104 result = _PyUnicodeWriter_WriteASCIIString(writer, buf, n_digits); in format_float_internal()
/external/python/cpython3/Include/cpython/
Dunicodeobject.h697 _PyUnicodeWriter_WriteASCIIString(_PyUnicodeWriter *writer,