OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:_PyAccu
(Results
1 - 4
of
4
) sorted by null
/external/python/cpython3/Include/
accu.h
24
}
_PyAccu
;
26
PyAPI_FUNC(int) _PyAccu_Init(
_PyAccu
*acc);
27
PyAPI_FUNC(int) _PyAccu_Accumulate(
_PyAccu
*acc, PyObject *unicode);
28
PyAPI_FUNC(PyObject *) _PyAccu_FinishAsList(
_PyAccu
*acc);
29
PyAPI_FUNC(PyObject *) _PyAccu_Finish(
_PyAccu
*acc);
30
PyAPI_FUNC(void) _PyAccu_Destroy(
_PyAccu
*acc);
/external/python/cpython3/Objects/
accu.c
18
_PyAccu_Init(
_PyAccu
*acc)
29
flush_accumulator(
_PyAccu
*acc)
55
_PyAccu_Accumulate(
_PyAccu
*acc, PyObject *unicode)
76
_PyAccu_FinishAsList(
_PyAccu
*acc)
93
_PyAccu_Finish(
_PyAccu
*acc)
111
_PyAccu_Destroy(
_PyAccu
*acc)
/external/python/cpython3/Modules/
_json.c
110
encoder_listencode_list(PyEncoderObject *s,
_PyAccu
*acc, PyObject *seq, Py_ssize_t indent_level);
112
encoder_listencode_obj(PyEncoderObject *s,
_PyAccu
*acc, PyObject *obj, Py_ssize_t indent_level);
114
encoder_listencode_dict(PyEncoderObject *s,
_PyAccu
*acc, PyObject *dct, Py_ssize_t indent_level);
[
all
...]
/external/python/cpython3/Modules/_io/
stringio.c
29
the contents are given by the embedded
_PyAccu
structure.
31
_PyAccu
is destroyed.
34
_PyAccu
accu;
Completed in 353 milliseconds