Searched refs:_PyUnicodeWriter_WriteASCIIString (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython3/Python/ |
D | context.c | 860 if (_PyUnicodeWriter_WriteASCIIString( in contextvar_tp_repr() 877 if (_PyUnicodeWriter_WriteASCIIString(&writer, " default=", 9) < 0) { in contextvar_tp_repr() 1066 if (_PyUnicodeWriter_WriteASCIIString(&writer, "<Token", 6) < 0) { in token_tp_repr() 1071 if (_PyUnicodeWriter_WriteASCIIString(&writer, " used", 5) < 0) { in token_tp_repr() 1076 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() 679 if (-1 == _PyUnicodeWriter_WriteASCIIString(writer, ":", 1) || in append_formattedvalue()
|
D | formatter_unicode.c | 1101 result = _PyUnicodeWriter_WriteASCIIString(writer, buf, n_digits); in format_float_internal()
|
/external/python/cpython3/Objects/ |
D | tupleobject.c | 302 if (_PyUnicodeWriter_WriteASCIIString(&writer, ", ", 2) < 0) in tuplerepr() 323 if (_PyUnicodeWriter_WriteASCIIString(&writer, ",)", 2) < 0) in tuplerepr()
|
D | dictobject.c | 1962 if (_PyUnicodeWriter_WriteASCIIString(&writer, ", ", 2) < 0) in dict_repr() 1975 if (_PyUnicodeWriter_WriteASCIIString(&writer, ": ", 2) < 0) in dict_repr()
|
D | unicodeobject.c | 2765 if (_PyUnicodeWriter_WriteASCIIString(writer, buffer, len) < 0) in unicode_fromformat_arg() 2788 if (_PyUnicodeWriter_WriteASCIIString(writer, number, len) < 0) in unicode_fromformat_arg() 2940 if (_PyUnicodeWriter_WriteASCIIString(&writer, f, len) < 0) in PyUnicode_FromFormatV() 13681 _PyUnicodeWriter_WriteASCIIString(_PyUnicodeWriter *writer, in _PyUnicodeWriter_WriteASCIIString() function 14116 if (_PyUnicodeWriter_WriteASCIIString(writer, p, len) < 0) { in formatfloat()
|
D | listobject.c | 363 if (_PyUnicodeWriter_WriteASCIIString(&writer, ", ", 2) < 0) in list_repr()
|
/external/python/cpython3/Include/ |
D | unicodeobject.h | 976 _PyUnicodeWriter_WriteASCIIString(_PyUnicodeWriter *writer,
|