Lines Matching refs:runner
105 BenchmarkSuite.RunSuites = function(runner) { argument
117 if (runner.NotifyStart) runner.NotifyStart(suite.name);
118 continuation = suite.RunStep(runner);
125 if (runner.NotifyScore) {
128 runner.NotifyScore(formatted);
171 if (this.runner.NotifyStep) this.runner.NotifyStep(result.benchmark.name);
181 if (this.runner.NotifyResult) {
183 this.runner.NotifyResult(this.name, formatted);
190 if (this.runner.NotifyError) {
191 this.runner.NotifyError(this.name, error);
193 if (this.runner.NotifyStep) {
194 this.runner.NotifyStep(this.name);
235 BenchmarkSuite.prototype.RunStep = function(runner) { argument
237 this.runner = runner;