Searched refs:linesOfCode (Results 1 – 4 of 4) sorted by relevance
53 private $linesOfCode = null; variable in SebastianBergmann\\CodeCoverage\\Node\\Directory289 if ($this->linesOfCode === null) {290 $this->linesOfCode = ['loc' => 0, 'cloc' => 0, 'ncloc' => 0];293 $linesOfCode = $child->getLinesOfCode();295 $this->linesOfCode['loc'] += $linesOfCode['loc'];296 $this->linesOfCode['cloc'] += $linesOfCode['cloc'];297 $this->linesOfCode['ncloc'] += $linesOfCode['ncloc'];301 return $this->linesOfCode;
58 private $linesOfCode = []; variable in SebastianBergmann\\CodeCoverage\\Node\\File206 return $this->linesOfCode;406 $this->linesOfCode = $tokens->getLinesOfCode();409 for ($lineNumber = 1; $lineNumber <= $this->linesOfCode['loc']; $lineNumber++) {
190 $linesOfCode = $item->getLinesOfCode();193 $xmlMetrics->setAttribute('loc', $linesOfCode['loc']);194 $xmlMetrics->setAttribute('ncloc', $linesOfCode['ncloc']);222 $linesOfCode = $report->getLinesOfCode();226 $xmlMetrics->setAttribute('loc', $linesOfCode['loc']);227 $xmlMetrics->setAttribute('ncloc', $linesOfCode['ncloc']);
68 protected $linesOfCode = ['loc' => 0, 'cloc' => 0, 'ncloc' => 0]; variable in PHP_Token_Stream190 $this->linesOfCode['cloc'] += $lines + 1;202 $this->linesOfCode['loc'] = substr_count($sourceCode, "\n");203 $this->linesOfCode['ncloc'] = $this->linesOfCode['loc'] -204 $this->linesOfCode['cloc'];475 return $this->linesOfCode;