Lines Matching refs:report
56 report = {}
59 return report
62 return report
69 return report
71 report = {
74 'report': '\n'.join(details),
78 return report
119 report = self.report_build_warning(filename, title_regex, details)
120 if not report is None:
121 reports.append(report)
247 for report in reporter.parse(errmsg):
248 if ignores and [i for i in ignores if re.match(i, report['title'])]:
249 known_issue = known_issue + report['title'] + "\n"
250 known_issue = known_issue + report['report'] + "\n"
257 for report in reporter.parse(errmsg):
258 if ignores and [i for i in ignores if re.match(i, report['title'])]:
260 new_issue = new_issue + report['title'] + "\n"
261 new_issue = new_issue + report['report'] + "\n"