Lines Matching refs:issue
33 '- You can edit this file manually to suppress an issue\n'
44 _Issue = collections.namedtuple('Issue', ['severity', 'paths'])
51 for issue in dom.getElementsByTagName('issue'):
52 issue_id = issue.attributes['id'].value
53 severity = issue.getAttribute('severity')
56 issue.getElementsByTagName('ignore')])
64 for issue in dom.getElementsByTagName('issue'):
65 issue_id = issue.attributes['id'].value
66 severity = issue.attributes['severity'].value
67 path = issue.getElementsByTagName('location')[0].attributes['file'].value
80 issue = new_dom.createElement('issue')
81 issue.attributes['id'] = issue_id
83 issue.attributes['severity'] = severity
90 issue.appendChild(ignore)
91 top_element.appendChild(issue)