Lines Matching refs:kwds

421 keyobject_call(keyobject *ko, PyObject *args, PyObject *kwds);
461 keyobject_call(keyobject *ko, PyObject *args, PyObject *kwds) in keyobject_call() argument
467 if (!PyArg_ParseTupleAndKeywords(args, kwds, "O:K", kwargs, &object)) in keyobject_call()
525 functools_cmp_to_key(PyObject *self, PyObject *args, PyObject *kwds) in functools_cmp_to_key() argument
531 if (!PyArg_ParseTupleAndKeywords(args, kwds, "O:cmp_to_key", kwargs, &cmp)) in functools_cmp_to_key()
708 lru_cache_make_key(PyObject *args, PyObject *kwds, int typed) in lru_cache_make_key() argument
714 if (!typed && !kwds) { in lru_cache_make_key()
719 kwds_size = kwds ? PyDict_Size(kwds) : 0; in lru_cache_make_key()
741 for (pos = 0; PyDict_Next(kwds, &pos, &keyword, &value);) { in lru_cache_make_key()
756 for (pos = 0; PyDict_Next(kwds, &pos, &keyword, &value);) { in lru_cache_make_key()
768 uncached_lru_cache_wrapper(lru_cache_object *self, PyObject *args, PyObject *kwds) in uncached_lru_cache_wrapper() argument
770 PyObject *result = PyObject_Call(self->func, args, kwds); in uncached_lru_cache_wrapper()
778 infinite_lru_cache_wrapper(lru_cache_object *self, PyObject *args, PyObject *kwds) in infinite_lru_cache_wrapper() argument
782 PyObject *key = lru_cache_make_key(args, kwds, self->typed); in infinite_lru_cache_wrapper()
801 result = PyObject_Call(self->func, args, kwds); in infinite_lru_cache_wrapper()
834 bounded_lru_cache_wrapper(lru_cache_object *self, PyObject *args, PyObject *kwds) in bounded_lru_cache_wrapper() argument
840 key = lru_cache_make_key(args, kwds, self->typed); in bounded_lru_cache_wrapper()
862 result = PyObject_Call(self->func, args, kwds); in bounded_lru_cache_wrapper()
1049 lru_cache_call(lru_cache_object *self, PyObject *args, PyObject *kwds) in lru_cache_call() argument
1051 return self->wrapper(self, args, kwds); in lru_cache_call()