HomeSort by relevance Sort by last modified time
    Searched refs:sort_func (Results 1 - 7 of 7) sorted by null

  /system/extras/showslab/
showslab.c 47 static sort_t sort_func; variable
175 if (sort_func(a, b)) {
191 * slabsort - merge sort the slab_info linked list based on sort_func
276 sort_func = DEF_SORT_FUNC;
289 sort_func = set_sort_func(argv[2][0]) ? : DEF_SORT_FUNC;
  /external/toolchain-utils/bestflags/
genetic_algorithm.py 257 sort_func = lambda task: task.GetTestResult()
258 retained_tasks = sorted(gen_tasks, key=sort_func)[:target_len]
  /frameworks/native/cmds/cmd/
cmd.cpp 47 static int sort_func(const String16* lhs, const String16* rhs) function
197 services.sort(sort_func);
  /frameworks/native/cmds/dumpsys/
dumpsys.cpp 52 static int sort_func(const String16* lhs, const String16* rhs) function
274 services.sort(sort_func);
277 protoServices.sort(sort_func);
  /external/protobuf/python/google/protobuf/pyext/
repeated_composite_container.cc 381 PyObject* sort_func = PyDict_GetItemString(kwds, "sort_function"); local
382 if (sort_func != NULL) {
383 // Must set before deleting as sort_func is a borrowed reference
385 PyDict_SetItemString(kwds, "cmp", sort_func);
repeated_scalar_container.cc 606 PyObject* sort_func = PyDict_GetItemString(kwds, "sort_function");
607 if (sort_func != NULL) {
608 // Must set before deleting as sort_func is a borrowed reference
610 if (PyDict_SetItemString(kwds, "cmp", sort_func) == -1)
  /external/v8/tools/
callstats.py 432 sort_func = sort_asc_func if args.sort == "asc" else sort_desc_func
434 L = [item for item in sorted(S.items(), key=sort_func)

Completed in 139 milliseconds