Searched refs:_PyUnicodeWriter_WriteASCIIString (Results 1 – 9 of 9) sorted by relevance
| /external/python/cpython3/Python/ |
| D | context.c | 876 if (_PyUnicodeWriter_WriteASCIIString( in contextvar_tp_repr() 893 if (_PyUnicodeWriter_WriteASCIIString(&writer, " default=", 9) < 0) { in contextvar_tp_repr() 1103 if (_PyUnicodeWriter_WriteASCIIString(&writer, "<Token", 6) < 0) { in token_tp_repr() 1108 if (_PyUnicodeWriter_WriteASCIIString(&writer, " used", 5) < 0) { in token_tp_repr() 1113 if (_PyUnicodeWriter_WriteASCIIString(&writer, " var=", 5) < 0) { in token_tp_repr()
|
| D | ast_unparse.c | 25 return _PyUnicodeWriter_WriteASCIIString(writer, charp, -1); in append_charp() 687 if (-1 == _PyUnicodeWriter_WriteASCIIString(writer, ":", 1) || in append_formattedvalue()
|
| D | formatter_unicode.c | 1102 result = _PyUnicodeWriter_WriteASCIIString(writer, buf, n_digits); in format_float_internal()
|
| /external/python/cpython3/Objects/ |
| D | tupleobject.c | 303 if (_PyUnicodeWriter_WriteASCIIString(&writer, ", ", 2) < 0) in tuplerepr() 324 if (_PyUnicodeWriter_WriteASCIIString(&writer, ",)", 2) < 0) in tuplerepr()
|
| D | structseq.c | 227 if (_PyUnicodeWriter_WriteASCIIString(&writer, ", ", 2) < 0) { in structseq_repr()
|
| D | dictobject.c | 2047 if (_PyUnicodeWriter_WriteASCIIString(&writer, ", ", 2) < 0) in dict_repr() 2060 if (_PyUnicodeWriter_WriteASCIIString(&writer, ": ", 2) < 0) in dict_repr()
|
| D | unicodeobject.c | 2808 if (_PyUnicodeWriter_WriteASCIIString(writer, buffer, len) < 0) in unicode_fromformat_arg() 2831 if (_PyUnicodeWriter_WriteASCIIString(writer, number, len) < 0) in unicode_fromformat_arg() 2983 if (_PyUnicodeWriter_WriteASCIIString(&writer, f, len) < 0) in PyUnicode_FromFormatV() 13705 _PyUnicodeWriter_WriteASCIIString(_PyUnicodeWriter *writer, in _PyUnicodeWriter_WriteASCIIString() function 14141 if (_PyUnicodeWriter_WriteASCIIString(writer, p, len) < 0) { in formatfloat()
|
| D | listobject.c | 411 if (_PyUnicodeWriter_WriteASCIIString(&writer, ", ", 2) < 0) in list_repr()
|
| /external/python/cpython3/Include/cpython/ |
| D | unicodeobject.h | 696 _PyUnicodeWriter_WriteASCIIString(_PyUnicodeWriter *writer,
|