Home
last modified time | relevance | path

Searched refs:method_check_args (Results 1 – 1 of 1) sorted by relevance

/external/python/cpython3/Objects/
Ddescrobject.c254 method_check_args(PyObject *func, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in method_check_args() function
301 if (method_check_args(func, args, nargs, kwnames)) { in method_vectorcall_VARARGS()
325 if (method_check_args(func, args, nargs, NULL)) { in method_vectorcall_VARARGS_KEYWORDS()
360 if (method_check_args(func, args, nargs, NULL)) { in method_vectorcall_FASTCALL_KEYWORDS_METHOD()
380 if (method_check_args(func, args, nargs, kwnames)) { in method_vectorcall_FASTCALL()
399 if (method_check_args(func, args, nargs, NULL)) { in method_vectorcall_FASTCALL_KEYWORDS()
418 if (method_check_args(func, args, nargs, kwnames)) { in method_vectorcall_NOARGS()
445 if (method_check_args(func, args, nargs, kwnames)) { in method_vectorcall_O()