Home
last modified time | relevance | path

Searched refs:_PyAccu_Accumulate (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython3/Include/internal/
Dpycore_accu.h30 PyAPI_FUNC(int) _PyAccu_Accumulate(_PyAccu *acc, PyObject *unicode);
/external/python/cpython3/Modules/
D_json.c1390 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/
Daccu.c55 _PyAccu_Accumulate(_PyAccu *acc, PyObject *unicode) in _PyAccu_Accumulate() function
/external/python/cpython3/Modules/_io/
Dstringio.c134 _PyAccu_Accumulate(&self->accu, intermediate)) { in make_intermediate()
221 if (_PyAccu_Accumulate(&self->accu, decoded)) in write_str()