Lines Matching refs:PyEncoderObject
67 } PyEncoderObject; typedef
70 {"markers", T_OBJECT, offsetof(PyEncoderObject, markers), READONLY, "markers"},
71 {"default", T_OBJECT, offsetof(PyEncoderObject, defaultfn), READONLY, "default"},
72 {"encoder", T_OBJECT, offsetof(PyEncoderObject, encoder), READONLY, "encoder"},
73 {"indent", T_OBJECT, offsetof(PyEncoderObject, indent), READONLY, "indent"},
74 … {"key_separator", T_OBJECT, offsetof(PyEncoderObject, key_separator), READONLY, "key_separator"},
75 …{"item_separator", T_OBJECT, offsetof(PyEncoderObject, item_separator), READONLY, "item_separator"…
76 {"sort_keys", T_OBJECT, offsetof(PyEncoderObject, sort_keys), READONLY, "sort_keys"},
77 {"skipkeys", T_OBJECT, offsetof(PyEncoderObject, skipkeys), READONLY, "skipkeys"},
109 encoder_listencode_list(PyEncoderObject *s, PyObject *rval, PyObject *seq, Py_ssize_t indent_level);
111 encoder_listencode_obj(PyEncoderObject *s, PyObject *rval, PyObject *obj, Py_ssize_t indent_level);
113 encoder_listencode_dict(PyEncoderObject *s, PyObject *rval, PyObject *dct, Py_ssize_t indent_level);
119 encoder_encode_string(PyEncoderObject *s, PyObject *obj);
125 encoder_encode_float(PyEncoderObject *s, PyObject *obj);
1816 PyEncoderObject *s; in encoder_new()
1837 s = (PyEncoderObject *)type->tp_alloc(type, 0); in encoder_new()
1871 PyEncoderObject *s; in encoder_call()
1873 s = (PyEncoderObject *)self; in encoder_call()
1922 encoder_encode_float(PyEncoderObject *s, PyObject *obj) in encoder_encode_float()
1946 encoder_encode_string(PyEncoderObject *s, PyObject *obj) in encoder_encode_string()
1965 encoder_listencode_obj(PyEncoderObject *s, PyObject *rval, PyObject *obj, Py_ssize_t indent_level) in encoder_listencode_obj()
2060 encoder_listencode_dict(PyEncoderObject *s, PyObject *rval, PyObject *dct, Py_ssize_t indent_level) in encoder_listencode_dict()
2212 encoder_listencode_list(PyEncoderObject *s, PyObject *rval, PyObject *seq, Py_ssize_t indent_level) in encoder_listencode_list()
2310 PyEncoderObject *s; in encoder_traverse()
2312 s = (PyEncoderObject *)self; in encoder_traverse()
2328 PyEncoderObject *s; in encoder_clear()
2330 s = (PyEncoderObject *)self; in encoder_clear()
2348 sizeof(PyEncoderObject), /* tp_basicsize */