Searched refs:_PyUnicodeWriter_WriteASCIIString (Results 1 – 11 of 11) sorted by relevance
/third_party/python/Objects/ |
D | genericaliasobject.c | 130 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()
|
D | unionobject.c | 269 return _PyUnicodeWriter_WriteASCIIString(writer, "None", 4); in union_repr_item() 336 if (i > 0 && _PyUnicodeWriter_WriteASCIIString(&writer, " | ", 3) < 0) { in union_repr()
|
D | tupleobject.c | 341 if (_PyUnicodeWriter_WriteASCIIString(&writer, ", ", 2) < 0) in tuplerepr() 362 if (_PyUnicodeWriter_WriteASCIIString(&writer, ",)", 2) < 0) in tuplerepr()
|
D | structseq.c | 269 if (_PyUnicodeWriter_WriteASCIIString(&writer, ", ", 2) < 0) { in structseq_repr()
|
D | dictobject.c | 2132 if (_PyUnicodeWriter_WriteASCIIString(&writer, ", ", 2) < 0) in dict_repr() 2145 if (_PyUnicodeWriter_WriteASCIIString(&writer, ": ", 2) < 0) in dict_repr()
|
D | unicodeobject.c | 3005 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()
|
D | listobject.c | 389 if (_PyUnicodeWriter_WriteASCIIString(&writer, ", ", 2) < 0) in list_repr()
|
/third_party/python/Python/ |
D | context.c | 907 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()
|
D | ast_unparse.c | 33 return _PyUnicodeWriter_WriteASCIIString(writer, charp, -1); in append_charp() 710 if (-1 == _PyUnicodeWriter_WriteASCIIString(writer, ":", 1) || in append_formattedvalue()
|
D | formatter_unicode.c | 1110 result = _PyUnicodeWriter_WriteASCIIString(writer, buf, n_digits); in format_float_internal()
|
/third_party/python/Include/cpython/ |
D | unicodeobject.h | 694 _PyUnicodeWriter_WriteASCIIString(_PyUnicodeWriter *writer,
|