Lines Matching refs:self

6 "__copy__($self, /)\n"
15 array_array___copy___impl(arrayobject *self);
18 array_array___copy__(arrayobject *self, PyObject *Py_UNUSED(ignored))
20 return array_array___copy___impl(self);
24 "__deepcopy__($self, unused, /)\n"
33 "count($self, v, /)\n"
42 "index($self, v, start=0, stop=sys.maxsize, /)\n"
53 array_array_index_impl(arrayobject *self, PyObject *v, Py_ssize_t start,
57 array_array_index(arrayobject *self, PyObject *const *args, Py_ssize_t nargs)
81 return_value = array_array_index_impl(self, v, start, stop);
88 "remove($self, v, /)\n"
97 "pop($self, i=-1, /)\n"
108 array_array_pop_impl(arrayobject *self, Py_ssize_t i);
111 array_array_pop(arrayobject *self, PyObject *const *args, Py_ssize_t nargs)
135 return_value = array_array_pop_impl(self, i);
142 "extend($self, bb, /)\n"
151 array_array_extend_impl(arrayobject *self, PyTypeObject *cls, PyObject *bb);
154 array_array_extend(arrayobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
167 return_value = array_array_extend_impl(self, cls, bb);
174 "insert($self, i, v, /)\n"
183 array_array_insert_impl(arrayobject *self, Py_ssize_t i, PyObject *v);
186 array_array_insert(arrayobject *self, PyObject *const *args, Py_ssize_t nargs)
208 return_value = array_array_insert_impl(self, i, v);
215 "buffer_info($self, /)\n"
227 array_array_buffer_info_impl(arrayobject *self);
230 array_array_buffer_info(arrayobject *self, PyObject *Py_UNUSED(ignored))
232 return array_array_buffer_info_impl(self);
236 "append($self, v, /)\n"
245 "byteswap($self, /)\n"
257 array_array_byteswap_impl(arrayobject *self);
260 array_array_byteswap(arrayobject *self, PyObject *Py_UNUSED(ignored))
262 return array_array_byteswap_impl(self);
266 "reverse($self, /)\n"
275 array_array_reverse_impl(arrayobject *self);
278 array_array_reverse(arrayobject *self, PyObject *Py_UNUSED(ignored))
280 return array_array_reverse_impl(self);
284 "fromfile($self, f, n, /)\n"
293 array_array_fromfile_impl(arrayobject *self, PyTypeObject *cls, PyObject *f,
297 array_array_fromfile(arrayobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
323 return_value = array_array_fromfile_impl(self, cls, f, n);
330 "tofile($self, f, /)\n"
339 array_array_tofile_impl(arrayobject *self, PyTypeObject *cls, PyObject *f);
342 array_array_tofile(arrayobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
355 return_value = array_array_tofile_impl(self, cls, f);
362 "fromlist($self, list, /)\n"
371 "tolist($self, /)\n"
380 array_array_tolist_impl(arrayobject *self);
383 array_array_tolist(arrayobject *self, PyObject *Py_UNUSED(ignored))
385 return array_array_tolist_impl(self);
389 "frombytes($self, buffer, /)\n"
398 array_array_frombytes_impl(arrayobject *self, Py_buffer *buffer);
401 array_array_frombytes(arrayobject *self, PyObject *arg)
413 return_value = array_array_frombytes_impl(self, &buffer);
425 "tobytes($self, /)\n"
434 array_array_tobytes_impl(arrayobject *self);
437 array_array_tobytes(arrayobject *self, PyObject *Py_UNUSED(ignored))
439 return array_array_tobytes_impl(self);
443 "fromunicode($self, ustr, /)\n"
456 array_array_fromunicode_impl(arrayobject *self, PyObject *ustr);
459 array_array_fromunicode(arrayobject *self, PyObject *arg)
472 return_value = array_array_fromunicode_impl(self, ustr);
479 "tounicode($self, /)\n"
492 array_array_tounicode_impl(arrayobject *self);
495 array_array_tounicode(arrayobject *self, PyObject *Py_UNUSED(ignored))
497 return array_array_tounicode_impl(self);
501 "__sizeof__($self, /)\n"
510 array_array___sizeof___impl(arrayobject *self);
513 array_array___sizeof__(arrayobject *self, PyObject *Py_UNUSED(ignored))
515 return array_array___sizeof___impl(self);
571 "__reduce_ex__($self, value, /)\n"
580 array_array___reduce_ex___impl(arrayobject *self, PyTypeObject *cls,
584 array_array___reduce_ex__(arrayobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
597 return_value = array_array___reduce_ex___impl(self, cls, value);
604 "__reduce__($self, /)\n"
613 array_arrayiterator___reduce___impl(arrayiterobject *self, PyTypeObject *cls);
616 array_arrayiterator___reduce__(arrayiterobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
622 return array_arrayiterator___reduce___impl(self, cls);
626 "__setstate__($self, state, /)\n"