Searched refs:sort_func (Results 1 – 8 of 8) sorted by relevance
/third_party/libwebsockets/lib/misc/lwsac/ |
D | lwsac.c | 30 lws_list_ptr_sort_func_t sort_func) in lws_list_ptr_insert() argument 32 while (sort_func && *head) { in lws_list_ptr_insert() 33 if (sort_func(add, *head) <= 0) in lws_list_ptr_insert()
|
/third_party/protobuf/python/google/protobuf/pyext/ |
D | repeated_composite_container.cc | 422 PyObject* sort_func = PyDict_GetItemString(kwds, "sort_function"); in Subscript() local 423 if (sort_func != NULL) { in Subscript() 426 PyDict_SetItemString(kwds, "cmp", sort_func); in Subscript()
|
D | repeated_scalar_container.cc | 602 PyObject* sort_func = PyDict_GetItemString(kwds, "sort_function"); in Subscript() local 603 if (sort_func != NULL) { in Subscript() 606 if (PyDict_SetItemString(kwds, "cmp", sort_func) == -1) in Subscript()
|
/third_party/node/deps/v8/third_party/jinja2/ |
D | filters.py | 290 def sort_func(item): function 298 return sorted(value.items(), key=sort_func, reverse=reverse)
|
/third_party/node/tools/inspector_protocol/jinja2/ |
D | filters.py | 234 def sort_func(item): function 242 return sorted(value.items(), key=sort_func, reverse=reverse)
|
/third_party/skia/third_party/externals/jinja2/ |
D | filters.py | 290 def sort_func(item): function 298 return sorted(value.items(), key=sort_func, reverse=reverse)
|
/third_party/node/deps/v8/tools/ |
D | callstats.py | 451 sort_func = sort_asc_func if args.sort == "asc" else sort_desc_func 453 L = [item for item in sorted(S.items(), key=sort_func)
|
/third_party/jinja2/ |
D | filters.py | 345 def sort_func(item: t.Tuple[t.Any, t.Any]) -> t.Any: function 353 return sorted(value.items(), key=sort_func, reverse=reverse)
|