Lines Matching defs:Main
13 "path": <relative path chunks to perf resources and main file>,
22 "main": <main js perf runner file>,
37 with a "main" file is a leaf suite that can contain one more level of
62 "main": "run.js",
83 "main": "run.js",
88 "main": "run.js",
441 """Represents a runnable suite definition (i.e. has a main file).
444 def main(self):
445 return self._suite.get("main", "")
458 return self.flags + (extra_flags or []) + [self.main] + suffix
527 elif suite.get("main") is not None:
528 # A main file makes this graph runnable. Empty strings are accepted.
537 # or has a main js file.
595 """Execute the benchmark's main file.
751 self._PushFile(bench_abs, node.main, bench_rel)
788 def Main(args):
912 sys.exit(Main(sys.argv[1:]))