Home | History | Annotate | Download | only in Objects

Lines Matching refs:call_method

1503 call_method(PyObject *obj, _Py_Identifier *name,
1518 /* Clone of call_method() that returns NotImplemented when the lookup fails. */
5955 return call_method(self, &id, NULL, 0); \
5964 return call_method(self, &id, stack, 1); \
6045 PyObject *res = call_method(self, &PyId___len__, NULL, 0);
6079 retval = call_method(self, &PyId___getitem__, args, 1);
6098 res = call_method(self, &PyId___delitem__, stack, 1);
6102 res = call_method(self, &PyId___setitem__, stack, 2);
6157 res = call_method(self, &PyId___delitem__, stack, 1);
6161 res = call_method(self, &PyId___setitem__, stack, 2);
6195 return call_method(self, &PyId___pow__, stack, 2);
6262 return call_method(self, &PyId___index__, NULL, 0);
6286 return call_method(self, &PyId___ipow__, stack, 1);
6404 return call_method(self, &PyId___getattribute__, stack, 1);
6478 res = call_method(self, &PyId___delattr__, stack, 1);
6482 res = call_method(self, &PyId___setattr__, stack, 2);
6555 return call_method(self, &PyId___next__, NULL, 0);
6590 res = call_method(self, &PyId___delete__, stack, 1);
6594 res = call_method(self, &PyId___set__, stack, 2);