Uh oh!
There was an error while loading. Please reload this page.
forked from cppcheck-opensource/cppcheck
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcppcheck-errors.rng
More file actions
Latest commit
95 lines (95 loc) · 3.08 KB
/
Copy pathcppcheck-errors.rng
File metadata and controls
95 lines (95 loc) · 3.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?xml version="1.0" encoding="UTF-8"?>
<grammarxmlns="http://relaxng.org/ns/structure/1.0"ns=""datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
<start>
<elementname="results">
<attributename="version">
<choice>
<valuetype="string">2</value>
</choice>
</attribute>
<elementname="cppcheck">
<attributename="version">
<datatype="string">
<paramname="pattern">[1-9]\.[0-9]+.*</param>
</data>
</attribute>
</element>
<elementname="errors">
<zeroOrMore>
<elementname="error">
<attributename="id">
<datatype="NCName"/>
</attribute>
<optional>
<attributename="inconclusive">
<datatype="boolean"/>
</attribute>
</optional>
<attributename="msg">
<datatype="string"/>
</attribute>
<attributename="severity">
<choice>
<valuetype="string">error</value>
<valuetype="string">information</value>
<valuetype="string">performance</value>
<valuetype="string">portability</value>
<valuetype="string">style</value>
<valuetype="string">warning</value>
</choice>
</attribute>
<attributename="verbose">
<datatype="string"/>
</attribute>
<optional>
<attributename="file0">
<datatype="string"/>
</attribute>
</optional>
<optional>
<attributename="cwe">
<datatype="integer">
<paramname="minExclusive">0</param>
</data>
</attribute>
</optional>
<optional>
<attributename="hash">
<datatype="integer">
<paramname="minExclusive">1</param>
</data>
</attribute>
</optional>
<zeroOrMore>
<elementname="location">
<attributename="file">
<datatype="string"/>
</attribute>
<attributename="line">
<datatype="integer">
<paramname="minInclusive">0</param>
</data>
</attribute>
<attributename="column">
<datatype="integer">
<paramname="minInclusive">0</param>
</data>
</attribute>
<optional>
<attributename="info">
<datatype="string"/>
</attribute>
</optional>
</element>
</zeroOrMore>
<zeroOrMore>
<elementname="symbol">
<datatype="string"/>
</element>
</zeroOrMore>
</element>
</zeroOrMore>
</element>
</element>
</start>
</grammar>