Home | History | Annotate | Download | only in cli

Lines Matching refs:sort_by

198 def _list_profile_sort_key(profile_datum, sort_by):
203 sort_by: (string) indicates a value to sort by.
204 Must be one of SORT_BY* constants.
209 if sort_by == SORT_OPS_BY_OP_NAME:
211 elif sort_by == SORT_OPS_BY_OP_TYPE:
213 elif sort_by == SORT_OPS_BY_LINE:
215 elif sort_by == SORT_OPS_BY_OP_TIME:
217 elif sort_by == SORT_OPS_BY_EXEC_TIME:
309 "--sort_by",
310 dest="sort_by",
429 key=lambda datum: _list_profile_sort_key(datum, parsed.sort_by),
434 profile_data, parsed.sort_by, parsed.reverse, parsed.time_unit,
478 profile_datum_list, sort_by, sort_reverse, time_unit,
488 sort_by: (string) Identifier of column to sort. Sort identifier
547 if sort_by == sort_id and not sort_reverse: