Lines Matching refs:top
20 def get_summary(start_time, end_time, top=None, report_stat=False):
25 @param top: Number of top hits with the largest size of test results.
29 if top > 0:
40 if top:
42 for hit in hits[:top]:
64 parser.add_argument('-t', type=int, dest='top',
65 help='Print the top x of large result folders.',
80 top=options.top, report_stat=options.report_stat)