Home | History | Annotate | Download | only in tools

Lines Matching defs:stats

12   run         run chrome with --runtime-call-stats and generate logs
13 stats process logs and print statistics
17 For each command, you can try ./runtime-call-stats.py help command.
32 import scipy.stats
112 var msg = "STATS: (" + refreshId + ") " + url;
177 js_flags = "--runtime-call-stats"
203 # If the stats file is empty, chrome must be called again.
298 flags = get_chrome_flags("'--runtime-call-stats --allow-natives-syntax'",
323 t_bounds = scipy.stats.t.interval(0.95, N-1)
369 if line.startswith("STATS:"): continue
426 def stats(s, units=""):
431 stats(value['time_stat'], units="ms"),
432 stats(value['count_stat'])
526 stats = []
536 stats.append(entry)
537 domains[domain] = stats
566 "run", help="Replay websites and collect runtime stats data.")
630 # Command: stats.
631 subparsers["stats"] = subparser_adder.add_parser(
632 "stats", help="Analize the results file create by the 'run' command.")
633 subparsers["stats"].set_defaults(
634 func=do_stats, error=subparsers["stats"].error)
635 subparsers["stats"].add_argument(
638 subparsers["stats"].add_argument(
641 subparsers["stats"].add_argument(
644 subparsers["stats"].add_argument(
647 subparsers["stats"].add_argument(