Searched refs:getitemstr (Results 1 – 2 of 2) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
D | classobject.c | 1009 static PyObject *getitemstr, *setitemstr, *delitemstr, *lenstr; variable 1068 if (getitemstr == NULL) { in instance_subscript() 1069 getitemstr = PyString_InternFromString("__getitem__"); in instance_subscript() 1070 if (getitemstr == NULL) in instance_subscript() 1073 func = instance_getattr(inst, getitemstr); in instance_subscript() 1140 if (getitemstr == NULL) { in instance_item() 1141 getitemstr = PyString_InternFromString("__getitem__"); in instance_item() 1142 if (getitemstr == NULL) in instance_item() 1145 func = instance_getattr(inst, getitemstr); in instance_item() 1171 if (getitemstr == NULL) { in instance_slice() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
D | classobject.c | 1033 static PyObject *getitemstr, *setitemstr, *delitemstr, *lenstr; variable 1092 if (getitemstr == NULL) { in instance_subscript() 1093 getitemstr = PyString_InternFromString("__getitem__"); in instance_subscript() 1094 if (getitemstr == NULL) in instance_subscript() 1097 func = instance_getattr(inst, getitemstr); in instance_subscript() 1164 if (getitemstr == NULL) { in instance_item() 1165 getitemstr = PyString_InternFromString("__getitem__"); in instance_item() 1166 if (getitemstr == NULL) in instance_item() 1169 func = instance_getattr(inst, getitemstr); in instance_item() 1195 if (getitemstr == NULL) { in instance_slice() [all …]
|