Searched refs:_PyAccu_Accumulate (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython3/Include/internal/ |
D | pycore_accu.h | 30 PyAPI_FUNC(int) _PyAccu_Accumulate(_PyAccu *acc, PyObject *unicode);
|
/external/python/cpython3/Modules/ |
D | _json.c | 1390 int rval = _PyAccu_Accumulate(acc, stolen); in _steal_accumulate() 1514 return _PyAccu_Accumulate(acc, empty_dict); in encoder_listencode_dict() 1532 if (_PyAccu_Accumulate(acc, open_dict)) in encoder_listencode_dict() 1598 if (_PyAccu_Accumulate(acc, s->item_separator)) in encoder_listencode_dict() 1606 if (_PyAccu_Accumulate(acc, encoded)) { in encoder_listencode_dict() 1611 if (_PyAccu_Accumulate(acc, s->key_separator)) in encoder_listencode_dict() 1635 if (_PyAccu_Accumulate(acc, close_dict)) in encoder_listencode_dict() 1673 return _PyAccu_Accumulate(acc, empty_array); in encoder_listencode_list() 1692 if (_PyAccu_Accumulate(acc, open_array)) in encoder_listencode_list() 1706 if (_PyAccu_Accumulate(acc, s->item_separator)) in encoder_listencode_list() [all …]
|
/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 | 134 _PyAccu_Accumulate(&self->accu, intermediate)) { in make_intermediate() 221 if (_PyAccu_Accumulate(&self->accu, decoded)) in write_str()
|