Lines Matching refs:line
84 for line in result.stdout.splitlines():
86 print(line)
89 if not line and item:
92 match = re_stats_full.match(line)
94 match = re_stats.match(line)
103 elif re_ok.match(line):
105 elif re_bad.match(line):
107 err_match = re_error.match(line)
108 warn_match = re_warning.match(line)
109 file_match = re_file.match(line)
110 check_match = re_check.match(line)
126 def GetWarningMsg(col, msg_type, fname, line, msg): argument
141 return '%s:%d: %s: %s\n' % (fname, line, msg_type, msg)