Lines Matching defs:Main
13 "path": <relative path chunks to benchmark resources and main file>,
20 "resources": [<js file to be loaded before main>, ...]
21 "main": <main js benchmark runner file>,
36 with a "main" file is a leaf suite that can contain one more level of
60 "main": "run.js",
81 "main": "run.js",
86 "main": "run.js",
228 """Represents a runnable benchmark suite definition (i.e. has a main file).
231 def main(self):
232 return self._suite["main"]
249 [self.main]
277 elif suite.get("main"):
278 # A main file makes this graph runnable.
324 def Main(args):
401 sys.exit(Main(sys.argv[1:]))