Lines Matching refs:runner
117 BenchmarkSuite.RunSuites = function(runner, skipBenchmarks) { argument
130 if (runner.NotifyStart) runner.NotifyStart(suite.name);
132 suite.NotifySkipped(runner);
134 continuation = suite.RunStep(runner);
144 if (runner.NotifyScore) {
147 runner.NotifyScore(formatted);
218 if (this.runner.NotifyStep) this.runner.NotifyStep(result.benchmark.name);
228 if (this.runner.NotifyResult) {
230 this.runner.NotifyResult(this.name, formatted);
237 if (this.runner.NotifyResult) {
239 this.runner.NotifyResult(this.name + "Latency", formattedLatency);
246 BenchmarkSuite.prototype.NotifySkipped = function(runner) { argument
248 if (runner.NotifyResult) {
249 runner.NotifyResult(this.name, "Skipped");
256 if (this.runner.NotifyError) {
257 this.runner.NotifyError(this.name, error);
259 if (this.runner.NotifyStep) {
260 this.runner.NotifyStep(this.name);
317 BenchmarkSuite.prototype.RunStep = function(runner) { argument
320 this.runner = runner;