Home | History | Annotate | Download | only in benchmarks

Lines Matching refs:runner

104 // runner.
105 BenchmarkSuite.RunSuites = function(runner) {
117 if (runner.NotifyStart) runner.NotifyStart(suite.name);
118 continuation = suite.RunStep(runner);
125 if (runner.NotifyScore) {
128 runner.NotifyScore(formatted);
167 // Notifies the runner that we're done running a single benchmark in
171 if (this.runner.NotifyStep) this.runner.NotifyStep(result.benchmark.name);
175 // Notifies the runner that we're done with running a suite and that
181 if (this.runner.NotifyResult) {
183 this.runner.NotifyResult(this.name, formatted);
188 // Notifies the runner that running a benchmark resulted in an error.
190 if (this.runner.NotifyError) {
191 this.runner.NotifyError(this.name, error);
193 if (this.runner.NotifyStep) {
194 this.runner.NotifyStep(this.name);
217 BenchmarkSuite.prototype.RunStep = function(runner) {
219 this.runner = runner;