Lines Matching +full:- +full:- +full:match
1 # SPDX-License-Identifier: GPL-2.0+
36 sys.exit('Cannot find checkpatch.pl - please put it in your ' +
37 '~/bin directory or use --no-check')
65 result.stdout = command.Output(chk, '--no-tree', fname,
91 match = re_stats_full.match(line)
92 if not match:
93 match = re_stats.match(line)
94 if match:
95 result.errors = int(match.group(1))
96 result.warnings = int(match.group(2))
97 if len(match.groups()) == 4:
98 result.checks = int(match.group(3))
99 result.lines = int(match.group(4))
101 result.lines = int(match.group(3))
102 elif re_ok.match(line):
104 elif re_bad.match(line):
106 err_match = re_error.match(line)
107 warn_match = re_warning.match(line)
108 file_match = re_file.match(line)
109 check_match = re_check.match(line)