Lines Matching defs:meth
422 _PyCFunctionFast meth = (_PyCFunctionFast)
424 if (meth == NULL) {
427 PyObject *result = meth(PyCFunction_GET_SELF(func), args, nargs);
438 _PyCFunctionFastWithKeywords meth = (_PyCFunctionFastWithKeywords)
440 if (meth == NULL) {
443 PyObject *result = meth(PyCFunction_GET_SELF(func), args, nargs, kwnames);
455 PyCMethod meth = (PyCMethod)cfunction_enter_call(tstate, func);
456 if (meth == NULL) {
459 PyObject *result = meth(PyCFunction_GET_SELF(func), cls, args, nargs, kwnames);
482 PyCFunction meth = (PyCFunction)cfunction_enter_call(tstate, func);
483 if (meth == NULL) {
487 meth, PyCFunction_GET_SELF(func), NULL);
510 PyCFunction meth = (PyCFunction)cfunction_enter_call(tstate, func);
511 if (meth == NULL) {
515 meth, PyCFunction_GET_SELF(func), args[0]);
537 PyCFunction meth = PyCFunction_GET_FUNCTION(func);
543 (*(PyCFunctionWithKeywords)(void(*)(void))meth),
553 result = _PyCFunction_TrampolineCall(meth, self, args);