Lines Matching defs:meth
4490 PyObject *meth = NULL;
4492 int meth_found = _PyObject_GetMethod(obj, name, &meth);
4494 if (meth == NULL) {
4501 meth is unbound method and obj is self.
4503 meth | self | arg1 | ... | argN
4505 SET_TOP(meth);
4509 /* meth is not an unbound method (but a regular attr, or
4514 NULL | meth | arg1 | ... | argN
4518 PUSH(meth);
4660 /* `meth` is NULL when LOAD_METHOD thinks that it's not
4673 If `meth` isn't NULL, it's a method call. Stack layout:
4691 PyObject *meth = ((PyMethodObject *)function)->im_func;
4693 Py_INCREF(meth);
4696 PEEK(oparg+2) = meth;
4708 PyObject *meth = ((PyMethodObject *)function)->im_func;
4710 Py_INCREF(meth);
4713 PEEK(oparg + 2) = meth;
5213 PyMethodDef *meth = callable->d_method;
5214 DEOPT_IF(meth->ml_flags != METH_O, PRECALL);
5220 PyCFunction cfunc = meth->ml_meth;
5247 PyMethodDef *meth = callable->d_method;
5248 DEOPT_IF(meth->ml_flags != (METH_FASTCALL|METH_KEYWORDS), PRECALL);
5257 (_PyCFunctionFastWithKeywords)(void(*)(void))meth->ml_meth;
5286 PyMethodDef *meth = callable->d_method;
5289 DEOPT_IF(meth->ml_flags != METH_NOARGS, PRECALL);
5292 PyCFunction cfunc = meth->ml_meth;
5320 PyMethodDef *meth = callable->d_method;
5321 DEOPT_IF(meth->ml_flags != METH_FASTCALL, PRECALL);
5327 (_PyCFunctionFast)(void(*)(void))meth->ml_meth;