/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
arraymodule.c | 18 struct arrayobject; /* Forward */
27 PyObject * (*getitem)(struct arrayobject *, Py_ssize_t);
28 int (*setitem)(struct arrayobject *, Py_ssize_t, PyObject *);
31 typedef struct arrayobject {
struct 37 } arrayobject;
typedef in typeref:struct:arrayobject 45 array_resize(arrayobject *self, Py_ssize_t newsize)
94 A Get function takes an arrayobject* and an integer index, returning the
96 A Set function takes an arrayobject, integer index, and PyObject*; sets
105 c_getitem(arrayobject *ap, Py_ssize_t i)
111 c_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v) [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
arraymodule.c | 18 struct arrayobject; /* Forward */
27 PyObject * (*getitem)(struct arrayobject *, Py_ssize_t);
28 int (*setitem)(struct arrayobject *, Py_ssize_t, PyObject *);
31 typedef struct arrayobject {
struct 37 } arrayobject;
typedef in typeref:struct:arrayobject 45 array_resize(arrayobject *self, Py_ssize_t newsize)
94 A Get function takes an arrayobject* and an integer index, returning the
96 A Set function takes an arrayobject, integer index, and PyObject*; sets
105 c_getitem(arrayobject *ap, Py_ssize_t i)
111 c_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v) [all...] |
/external/python/cpython2/Modules/ |
arraymodule.c | 18 struct arrayobject; /* Forward */ 27 PyObject * (*getitem)(struct arrayobject *, Py_ssize_t); 28 int (*setitem)(struct arrayobject *, Py_ssize_t, PyObject *); 31 typedef struct arrayobject { struct 37 } arrayobject; typedef in typeref:struct:arrayobject 45 array_resize(arrayobject *self, Py_ssize_t newsize) 94 A Get function takes an arrayobject* and an integer index, returning the 96 A Set function takes an arrayobject, integer index, and PyObject*; sets 105 c_getitem(arrayobject *ap, Py_ssize_t i) 111 c_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v [all...] |
/external/python/cpython3/Modules/ |
arraymodule.c | 23 struct arrayobject; /* Forward */ 32 PyObject * (*getitem)(struct arrayobject *, Py_ssize_t); 33 int (*setitem)(struct arrayobject *, Py_ssize_t, PyObject *); 39 typedef struct arrayobject { struct 46 } arrayobject; typedef in typeref:struct:arrayobject 53 arrayobject *ao; 54 PyObject* (*getitem)(struct arrayobject *, Py_ssize_t); 102 * Must come after arrayobject, arrayiterobject, 111 array_resize(arrayobject *self, Py_ssize_t newsize) 174 A Get function takes an arrayobject* and an integer index, returning th [all...] |