Lines Matching refs:sort
206 # sort and keep largest/first when duplicates
207 sym_at.sort(key=lambda x: (x[0], -x[2], x[1]))
276 # sort and keep first when duplicates
277 lines.sort()
284 # sort and keep first when duplicates
285 line_at.sort()
643 sort=None,
671 # sort again, now with diff info, note that python's sort is stable
672 names.sort()
674 names.sort(key=lambda n: tuple(
680 if sort:
681 for k, reverse in reversed(sort):
682 names.sort(
823 # sort again at each layer, keep in mind the numbers are
825 names_.sort()
826 if sort:
827 for k, reverse in reversed(sort):
828 names_.sort(
1004 sort=None,
1041 # sort, note that python's sort is stable
1042 results.sort()
1043 if sort:
1044 for k, reverse in reversed(sort):
1045 results.sort(
1106 sort=sort,
1176 if namespace.sort is None:
1177 namespace.sort = []
1178 namespace.sort.append((value, True if option == '-S' else False))
1180 '-s', '--sort',
1185 '-S', '--reverse-sort',