Lines Matching full:checks
52 checks: Number of checks
56 fields = ['ok', 'problems', 'errors', 'warnings', 'checks', 'lines',
60 result.errors, result.warning, result.checks = 0, 0, 0
72 # total: 0 errors, 2 warnings, 7 checks, 473 lines checked
75 ' checks, (\d+)')
98 result.checks = int(match.group(3))
152 check_count += result.checks
153 print('%d errors, %d warnings, %d checks for %s:' % (result.errors,
154 result.warnings, result.checks, col.Color(col.BLUE, fname)))
156 result.checks):
166 str = 'checkpatch.pl found %d error(s), %d warning(s), %d checks(s)'