Searched refs:_PyAccu_Accumulate (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython3/Modules/ |
D | _json.c | 1452 int rval = _PyAccu_Accumulate(acc, stolen); in _steal_accumulate() 1576 return _PyAccu_Accumulate(acc, empty_dict); in encoder_listencode_dict() 1594 if (_PyAccu_Accumulate(acc, open_dict)) in encoder_listencode_dict() 1660 if (_PyAccu_Accumulate(acc, s->item_separator)) in encoder_listencode_dict() 1668 if (_PyAccu_Accumulate(acc, encoded)) { in encoder_listencode_dict() 1673 if (_PyAccu_Accumulate(acc, s->key_separator)) in encoder_listencode_dict() 1697 if (_PyAccu_Accumulate(acc, close_dict)) in encoder_listencode_dict() 1735 return _PyAccu_Accumulate(acc, empty_array); in encoder_listencode_list() 1754 if (_PyAccu_Accumulate(acc, open_array)) in encoder_listencode_list() 1768 if (_PyAccu_Accumulate(acc, s->item_separator)) in encoder_listencode_list() [all …]
|
/external/python/cpython3/Include/ |
D | accu.h | 27 PyAPI_FUNC(int) _PyAccu_Accumulate(_PyAccu *acc, PyObject *unicode);
|
/external/python/cpython3/Objects/ |
D | accu.c | 55 _PyAccu_Accumulate(_PyAccu *acc, PyObject *unicode) in _PyAccu_Accumulate() function
|
/external/python/cpython3/Modules/_io/ |
D | stringio.c | 133 _PyAccu_Accumulate(&self->accu, intermediate)) { in make_intermediate() 220 if (_PyAccu_Accumulate(&self->accu, decoded)) in write_str()
|