Home
last modified time | relevance | path

Searched defs:keyfunc (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython3/Objects/clinic/
Dlistobject.c.h183 PyObject *keyfunc = Py_None; in list_sort() local
/external/python/cpython3/Modules/clinic/
Ditertoolsmodule.c.h32 PyObject *keyfunc = Py_None; in itertools_groupby() local
/external/python/cpython2/Lib/test/
Dtest_itertools.py527 def keyfunc(obj): function
1181 keyfunc = lambda x: x function
/external/python/cpython3/Lib/test/
Dtest_itertools.py823 def keyfunc(obj): function
1760 keyfunc = lambda x: x function
/external/python/cpython2/Python/
Dbltinmodule.c1360 PyObject *v, *it, *item, *val, *maxitem, *maxval, *keyfunc=NULL; in min_max() local
2230 PyObject *newlist, *v, *seq, *compare=NULL, *keyfunc=NULL, *newargs; in builtin_sorted() local
/external/python/cpython2/Modules/
Ditertoolsmodule.c15 PyObject *keyfunc; member
29 PyObject *it, *keyfunc = Py_None; in groupby_new() local
/external/python/cpython3/Python/
Dbltinmodule.c1587 PyObject *v, *it, *item, *val, *maxitem, *maxval, *keyfunc=NULL; in min_max() local
/external/python/cpython3/Modules/
Ditertoolsmodule.c56 PyObject *keyfunc; member
80 itertools_groupby_impl(PyTypeObject *type, PyObject *it, PyObject *keyfunc) in itertools_groupby_impl()
/external/python/cpython2/Objects/
Dlistobject.c2056 PyObject *keyfunc = NULL; in listsort() local
/external/python/cpython3/Lib/
Dpydoc.py313 keyfunc = lambda attr: (field_order.get(attr[0], 0), attr[0]) function
/external/python/cpython3/Objects/
Dlistobject.c2180 list_sort_impl(PyListObject *self, PyObject *keyfunc, int reverse) in list_sort_impl()