Home
last modified time | relevance | path

Searched refs:_PyUnicodeWriter_WriteChar (Results 1 – 9 of 9) sorted by relevance

/third_party/python/Objects/
Dstructseq.c262 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()
Dtupleobject.c333 if (_PyUnicodeWriter_WriteChar(&writer, '(') < 0) in tuplerepr()
358 if (_PyUnicodeWriter_WriteChar(&writer, ')') < 0) in tuplerepr()
Dlistobject.c382 if (_PyUnicodeWriter_WriteChar(&writer, '[') < 0) in list_repr()
405 if (_PyUnicodeWriter_WriteChar(&writer, ']') < 0) in list_repr()
Ddictobject.c2116 if (_PyUnicodeWriter_WriteChar(&writer, '{') < 0) in dict_repr()
2161 if (_PyUnicodeWriter_WriteChar(&writer, '}') < 0) in dict_repr()
Dunicodeobject.c14211 _PyUnicodeWriter_WriteChar(_PyUnicodeWriter *writer, Py_UCS4 ch) in _PyUnicodeWriter_WriteChar() function
/third_party/python/Modules/cjkcodecs/
Dcjkcodecs.h137 if (_PyUnicodeWriter_WriteChar(writer, (c)) < 0) \
Dmultibytecodec.c416 if (_PyUnicodeWriter_WriteChar(&buf->writer, in multibytecodec_decerror()
/third_party/python/Include/cpython/
Dunicodeobject.h671 _PyUnicodeWriter_WriteChar(_PyUnicodeWriter *writer,
/third_party/python/Modules/
D_json.c539 if (_PyUnicodeWriter_WriteChar(&writer, c) < 0) { in scanstring_unicode()