Searched refs:_PyUnicodeWriter_WriteASCIIString (Results 1 – 14 of 14) sorted by relevance
/external/python/cpython3/Objects/ |
D | genericaliasobject.c | 127 if (_PyUnicodeWriter_WriteASCIIString(writer, "[", 1) < 0) { in ga_repr_items_list() 133 if (_PyUnicodeWriter_WriteASCIIString(writer, ", ", 2) < 0) { in ga_repr_items_list() 143 if (_PyUnicodeWriter_WriteASCIIString(writer, "]", 1) < 0) { in ga_repr_items_list() 160 if (_PyUnicodeWriter_WriteASCIIString(&writer, "*", 1) < 0) { in ga_repr() 167 if (_PyUnicodeWriter_WriteASCIIString(&writer, "[", 1) < 0) { in ga_repr() 172 if (_PyUnicodeWriter_WriteASCIIString(&writer, ", ", 2) < 0) { in ga_repr() 189 if (_PyUnicodeWriter_WriteASCIIString(&writer, "()", 2) < 0) { in ga_repr() 193 if (_PyUnicodeWriter_WriteASCIIString(&writer, "]", 1) < 0) { in ga_repr()
|
D | unionobject.c | 193 return _PyUnicodeWriter_WriteASCIIString(writer, "None", 4); in union_repr_item() 254 if (i > 0 && _PyUnicodeWriter_WriteASCIIString(&writer, " | ", 3) < 0) { in union_repr()
|
D | tupleobject.c | 256 if (_PyUnicodeWriter_WriteASCIIString(&writer, ", ", 2) < 0) in tuplerepr() 277 if (_PyUnicodeWriter_WriteASCIIString(&writer, ",)", 2) < 0) in tuplerepr()
|
D | structseq.c | 298 if (_PyUnicodeWriter_WriteASCIIString(&writer, ", ", 2) < 0) { in structseq_repr()
|
D | unicodeobject.c | 2833 if (_PyUnicodeWriter_WriteASCIIString(writer, &buffer[sign], len) < 0) in unicode_fromformat_arg() 2862 if (_PyUnicodeWriter_WriteASCIIString(writer, number, len) < 0) in unicode_fromformat_arg() 3078 if (_PyUnicodeWriter_WriteASCIIString(&writer, f, len) < 0) in PyUnicode_FromFormatV() 13472 _PyUnicodeWriter_WriteASCIIString(_PyUnicodeWriter *writer, in _PyUnicodeWriter_WriteASCIIString() function 13900 if (_PyUnicodeWriter_WriteASCIIString(writer, p, len) < 0) { in formatfloat()
|
D | dictobject.c | 3239 if (_PyUnicodeWriter_WriteASCIIString(&writer, ", ", 2) < 0) in dict_repr_lock_held() 3252 if (_PyUnicodeWriter_WriteASCIIString(&writer, ": ", 2) < 0) in dict_repr_lock_held()
|
D | listobject.c | 603 if (_PyUnicodeWriter_WriteASCIIString(&writer, ", ", 2) < 0) in list_repr_impl()
|
/external/python/cpython3/Python/ |
D | context.c | 915 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()
|
D | ast_unparse.c | 30 return _PyUnicodeWriter_WriteASCIIString(writer, charp, -1); in append_charp() 710 if (-1 == _PyUnicodeWriter_WriteASCIIString(writer, ":", 1) || in append_formattedvalue()
|
D | formatter_unicode.c | 1131 result = _PyUnicodeWriter_WriteASCIIString(writer, buf, n_digits); in format_float_internal()
|
/external/python/cpython3/Modules/ |
D | _json.c | 1389 return _PyUnicodeWriter_WriteASCIIString(writer, "null", 4); in encoder_listencode_obj() 1392 return _PyUnicodeWriter_WriteASCIIString(writer, "true", 4); in encoder_listencode_obj() 1395 return _PyUnicodeWriter_WriteASCIIString(writer, "false", 5); in encoder_listencode_obj() 1556 return _PyUnicodeWriter_WriteASCIIString(writer, "{}", 2); in encoder_listencode_dict() 1668 return _PyUnicodeWriter_WriteASCIIString(writer, "[]", 2); in encoder_listencode_list()
|
/external/python/cpython3/Include/cpython/ |
D | unicodeobject.h | 539 _PyUnicodeWriter_WriteASCIIString(_PyUnicodeWriter *writer,
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.13.0a2.rst | 1431 * _PyUnicodeWriter_WriteASCIIString()
|
/external/python/cpython3/Doc/data/ |
D | python3.13.abi | 1342 …<elf-symbol name='_PyUnicodeWriter_WriteASCIIString' type='func-type' binding='global-binding' vis… 7425 …_PyUnicodeWriter_WriteASCIIString' mangled-name='_PyUnicodeWriter_WriteASCIIString' filepath='./In…
|