Lines Matching full:checks
53 checks: Number of checks
57 fields = ['ok', 'problems', 'errors', 'warnings', 'checks', 'lines',
61 result.errors, result.warning, result.checks = 0, 0, 0
73 # total: 0 errors, 2 warnings, 7 checks, 473 lines checked
76 ' checks, (\d+)')
99 result.checks = int(match.group(3))
153 check_count += result.checks
154 print('%d errors, %d warnings, %d checks for %s:' % (result.errors,
155 result.warnings, result.checks, col.Color(col.BLUE, fname)))
157 result.checks):
167 str = 'checkpatch.pl found %d error(s), %d warning(s), %d checks(s)'