Lines Matching defs:meth
325 PyCFunction meth = (PyCFunction)method_enter_call(tstate, func);
326 if (meth == NULL) {
331 meth, args[0], argstuple);
359 PyCFunctionWithKeywords meth = (PyCFunctionWithKeywords)
361 if (meth == NULL) {
365 meth, args[0], argstuple, kwdict);
382 PyCMethod meth = (PyCMethod) method_enter_call(tstate, func);
383 if (meth == NULL) {
386 PyObject *result = meth(args[0],
402 _PyCFunctionFast meth = (_PyCFunctionFast)
404 if (meth == NULL) {
407 PyObject *result = meth(args[0], args+1, nargs-1);
421 _PyCFunctionFastWithKeywords meth = (_PyCFunctionFastWithKeywords)
423 if (meth == NULL) {
426 PyObject *result = meth(args[0], args+1, nargs-1, kwnames);
449 PyCFunction meth = (PyCFunction)method_enter_call(tstate, func);
450 if (meth == NULL) {
453 PyObject *result = _PyCFunction_TrampolineCall(meth, args[0], NULL);
477 PyCFunction meth = (PyCFunction)method_enter_call(tstate, func);
478 if (meth == NULL) {
481 PyObject *result = _PyCFunction_TrampolineCall(meth, args[0], args[1]);