Searched refs:sort_func (Results 1 – 3 of 3) sorted by relevance
/external/opencv3/3rdparty/jinja2/ |
D | filters.py | 217 def sort_func(item): function 223 return sorted(value.items(), key=sort_func) 255 def sort_func(item): function 260 sort_func = None 263 def sort_func(item, processor=sort_func or (lambda x: x)): function 265 return sorted(value, key=sort_func, reverse=reverse)
|
/external/protobuf/python/google/protobuf/pyext/ |
D | repeated_composite_container.cc | 548 PyObject* sort_func = PyDict_GetItemString(kwds, "sort_function"); in Sort() local 549 if (sort_func != NULL) { in Sort() 552 PyDict_SetItemString(kwds, "cmp", sort_func); in Sort()
|
D | repeated_scalar_container.cc | 607 PyObject* sort_func = PyDict_GetItemString(kwds, "sort_function"); in Sort() local 608 if (sort_func != NULL) { in Sort() 611 if (PyDict_SetItemString(kwds, "cmp", sort_func) == -1) in Sort()
|