Lines Matching refs:stats
190 if (!isset($this->stats[$path])) {
194 $total = array_sum($this->stats[$path]);
197 @$this->totals[true] += $this->stats[$path][true];
198 @$this->totals[false] += $this->stats[$path][false];
200 $stats = @sprintf(
202 $this->stats[$path][true],
203 $this->stats[$path][false],
204 (100 / $total) * $this->stats[$path][true]);
209 ' ', $this->config['width'] - strlen($stats)),
210 $stats, PHP_EOL);
222 $stats = @sprintf(
230 ' ', $this->config['width'] - strlen($stats)),
231 $stats, PHP_EOL);
282 @$this->stats[$path][($result=$test->getResult())]++;
552 protected $stats; variable in phpdbg\\testing\\Test