Searched refs:_PyUnicodeWriter_WriteChar (Results 1 – 9 of 9) sorted by relevance
/third_party/python/Objects/ |
D | structseq.c | 262 if (_PyUnicodeWriter_WriteChar(&writer, '(') < 0) { in structseq_repr() 292 if (_PyUnicodeWriter_WriteChar(&writer, '=') < 0) { in structseq_repr() 309 if (_PyUnicodeWriter_WriteChar(&writer, ')') < 0) { in structseq_repr()
|
D | tupleobject.c | 333 if (_PyUnicodeWriter_WriteChar(&writer, '(') < 0) in tuplerepr() 358 if (_PyUnicodeWriter_WriteChar(&writer, ')') < 0) in tuplerepr()
|
D | listobject.c | 382 if (_PyUnicodeWriter_WriteChar(&writer, '[') < 0) in list_repr() 405 if (_PyUnicodeWriter_WriteChar(&writer, ']') < 0) in list_repr()
|
D | dictobject.c | 2116 if (_PyUnicodeWriter_WriteChar(&writer, '{') < 0) in dict_repr() 2161 if (_PyUnicodeWriter_WriteChar(&writer, '}') < 0) in dict_repr()
|
D | unicodeobject.c | 14211 _PyUnicodeWriter_WriteChar(_PyUnicodeWriter *writer, Py_UCS4 ch) in _PyUnicodeWriter_WriteChar() function
|
/third_party/python/Modules/cjkcodecs/ |
D | cjkcodecs.h | 137 if (_PyUnicodeWriter_WriteChar(writer, (c)) < 0) \
|
D | multibytecodec.c | 416 if (_PyUnicodeWriter_WriteChar(&buf->writer, in multibytecodec_decerror()
|
/third_party/python/Include/cpython/ |
D | unicodeobject.h | 671 _PyUnicodeWriter_WriteChar(_PyUnicodeWriter *writer,
|
/third_party/python/Modules/ |
D | _json.c | 539 if (_PyUnicodeWriter_WriteChar(&writer, c) < 0) { in scanstring_unicode()
|