• Home
  • Raw
  • Download

Lines Matching refs:PyByteArrayObject

15 bytearray_clear_impl(PyByteArrayObject *self);
18 bytearray_clear(PyByteArrayObject *self, PyObject *Py_UNUSED(ignored)) in bytearray_clear()
33 bytearray_copy_impl(PyByteArrayObject *self);
36 bytearray_copy(PyByteArrayObject *self, PyObject *Py_UNUSED(ignored)) in bytearray_copy()
57 bytearray_translate_impl(PyByteArrayObject *self, PyObject *table,
61 bytearray_translate(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwn… in bytearray_translate()
139 bytearray_replace_impl(PyByteArrayObject *self, Py_buffer *old,
143 bytearray_replace(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs) in bytearray_replace()
187 bytearray_split_impl(PyByteArrayObject *self, PyObject *sep,
191 bytearray_split(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in bytearray_split()
262 bytearray_rsplit_impl(PyByteArrayObject *self, PyObject *sep,
266 bytearray_rsplit(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwname… in bytearray_rsplit()
294 bytearray_reverse_impl(PyByteArrayObject *self);
297 bytearray_reverse(PyByteArrayObject *self, PyObject *Py_UNUSED(ignored)) in bytearray_reverse()
317 bytearray_insert_impl(PyByteArrayObject *self, Py_ssize_t index, int item);
320 bytearray_insert(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs) in bytearray_insert()
349 bytearray_append_impl(PyByteArrayObject *self, int item);
352 bytearray_append(PyByteArrayObject *self, PyObject *arg) in bytearray_append()
394 bytearray_pop_impl(PyByteArrayObject *self, Py_ssize_t index);
397 bytearray_pop(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs) in bytearray_pop()
425 bytearray_remove_impl(PyByteArrayObject *self, int value);
428 bytearray_remove(PyByteArrayObject *self, PyObject *arg) in bytearray_remove()
454 bytearray_strip_impl(PyByteArrayObject *self, PyObject *bytes);
457 bytearray_strip(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs) in bytearray_strip()
485 bytearray_lstrip_impl(PyByteArrayObject *self, PyObject *bytes);
488 bytearray_lstrip(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs) in bytearray_lstrip()
516 bytearray_rstrip_impl(PyByteArrayObject *self, PyObject *bytes);
519 bytearray_rstrip(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs) in bytearray_rstrip()
554 bytearray_decode_impl(PyByteArrayObject *self, const char *encoding,
558 bytearray_decode(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwname… in bytearray_decode()
602 bytearray_splitlines_impl(PyByteArrayObject *self, int keepends);
605 bytearray_splitlines(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kw… in bytearray_splitlines()
662 bytearray_reduce_impl(PyByteArrayObject *self);
665 bytearray_reduce(PyByteArrayObject *self, PyObject *Py_UNUSED(ignored)) in bytearray_reduce()
680 bytearray_reduce_ex_impl(PyByteArrayObject *self, int proto);
683 bytearray_reduce_ex(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs) in bytearray_reduce_ex()
708 bytearray_sizeof_impl(PyByteArrayObject *self);
711 bytearray_sizeof(PyByteArrayObject *self, PyObject *Py_UNUSED(ignored)) in bytearray_sizeof()