Lines Matching refs:SeverityInfo
23 class SeverityInfo: class
41 SEVERITY_UNKNOWN = SeverityInfo(0, 'blueviolet', 'Unknown',
43 FIXMENOW = SeverityInfo(1, 'fuschia', 'FixNow',
45 HIGH = SeverityInfo(2, 'red', 'High', 'High severity warnings')
46 MEDIUM = SeverityInfo(3, 'orange', 'Medium', 'Medium severity warnings')
47 LOW = SeverityInfo(4, 'yellow', 'Low', 'Low severity warnings')
48 ANALYZER = SeverityInfo(5, 'hotpink', 'Analyzer', 'Clang-Analyzer warnings')
49 TIDY = SeverityInfo(6, 'peachpuff', 'Tidy', 'Clang-Tidy warnings')
50 HARMLESS = SeverityInfo(7, 'limegreen', 'Harmless', 'Harmless warnings')
51 UNMATCHED = SeverityInfo(8, 'lightblue', 'Unmatched', 'Unmatched warnings')
52 SKIP = SeverityInfo(9, 'grey', 'Unhandled', 'Unhandled warnings')