comment-to-html-xml-conversion.cpp revision 614323cc1cd3af406ed697bed7324f76f871419e
1// RUN: rm -rf %t
2// RUN: mkdir %t
3
4// Check that we serialize comment source locations properly.
5// RUN: %clang_cc1 -x c++ -std=c++11 -emit-pch -o %t/out.pch %s
6// RUN: %clang_cc1 -x c++ -std=c++11 -include-pch %t/out.pch -fsyntax-only %s
7
8// RUN: c-index-test -test-load-source all -comments-xml-schema=%S/../../bindings/xml/comment-xml-schema.rng %s -std=c++11 > %t/out.c-index-direct
9// RUN: c-index-test -test-load-tu %t/out.pch all > %t/out.c-index-pch
10
11// RUN: FileCheck %s -check-prefix=WRONG < %t/out.c-index-direct
12// RUN: FileCheck %s -check-prefix=WRONG < %t/out.c-index-pch
13
14// Ensure that XML is not invalid
15// WRONG-NOT: CommentXMLInvalid
16
17// RUN: FileCheck %s < %t/out.c-index-direct
18// RUN: FileCheck %s < %t/out.c-index-pch
19
20// XFAIL: valgrind
21
22#ifndef HEADER
23#define HEADER
24
25/// Aaa.
26void comment_to_html_conversion_1();
27
28// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:6: FunctionDecl=comment_to_html_conversion_1:{{.*}} FullCommentAsHTML=[<p class="para-brief"> Aaa.</p>] FullCommentAsXML=[<Function file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_1</Name><USR>c:@F@comment_to_html_conversion_1#</USR><Declaration>void comment_to_html_conversion_1()</Declaration><Abstract><Para> Aaa.</Para></Abstract></Function>]
29// CHECK-NEXT:  CommentAST=[
30// CHECK-NEXT:    (CXComment_FullComment
31// CHECK-NEXT:       (CXComment_Paragraph
32// CHECK-NEXT:         (CXComment_Text Text=[ Aaa.])))]
33
34/// \brief Aaa.
35void comment_to_html_conversion_2();
36
37// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:6: FunctionDecl=comment_to_html_conversion_2:{{.*}} FullCommentAsHTML=[<p class="para-brief"> Aaa.</p>] FullCommentAsXML=[<Function file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_2</Name><USR>c:@F@comment_to_html_conversion_2#</USR><Declaration>void comment_to_html_conversion_2()</Declaration><Abstract><Para> Aaa.</Para></Abstract></Function>]
38// CHECK-NEXT:  CommentAST=[
39// CHECK-NEXT:    (CXComment_FullComment
40// CHECK-NEXT:       (CXComment_Paragraph IsWhitespace
41// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace))
42// CHECK-NEXT:       (CXComment_BlockCommand CommandName=[brief]
43// CHECK-NEXT:         (CXComment_Paragraph
44// CHECK-NEXT:           (CXComment_Text Text=[ Aaa.]))))]
45
46/// \short Aaa.
47void comment_to_html_conversion_3();
48
49// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:6: FunctionDecl=comment_to_html_conversion_3:{{.*}} FullCommentAsHTML=[<p class="para-brief"> Aaa.</p>] FullCommentAsXML=[<Function file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_3</Name><USR>c:@F@comment_to_html_conversion_3#</USR><Declaration>void comment_to_html_conversion_3()</Declaration><Abstract><Para> Aaa.</Para></Abstract></Function>]
50// CHECK-NEXT:  CommentAST=[
51// CHECK-NEXT:    (CXComment_FullComment
52// CHECK-NEXT:       (CXComment_Paragraph IsWhitespace
53// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace))
54// CHECK-NEXT:       (CXComment_BlockCommand CommandName=[short]
55// CHECK-NEXT:         (CXComment_Paragraph
56// CHECK-NEXT:           (CXComment_Text Text=[ Aaa.]))))]
57
58/// Aaa.
59///
60/// \brief Bbb.
61void comment_to_html_conversion_4();
62
63// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:6: FunctionDecl=comment_to_html_conversion_4:{{.*}} FullCommentAsHTML=[<p class="para-brief"> Bbb.</p><p> Aaa.</p>] FullCommentAsXML=[<Function file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_4</Name><USR>c:@F@comment_to_html_conversion_4#</USR><Declaration>void comment_to_html_conversion_4()</Declaration><Abstract><Para> Bbb.</Para></Abstract><Discussion><Para> Aaa.</Para></Discussion></Function>]
64// CHECK-NEXT:  CommentAST=[
65// CHECK-NEXT:    (CXComment_FullComment
66// CHECK-NEXT:       (CXComment_Paragraph
67// CHECK-NEXT:         (CXComment_Text Text=[ Aaa.]))
68// CHECK-NEXT:       (CXComment_Paragraph IsWhitespace
69// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace))
70// CHECK-NEXT:       (CXComment_BlockCommand CommandName=[brief]
71// CHECK-NEXT:         (CXComment_Paragraph
72// CHECK-NEXT:           (CXComment_Text Text=[ Bbb.]))))]
73
74/// Aaa.
75///
76/// \brief Bbb.
77///
78/// Ccc.
79void comment_to_html_conversion_5();
80
81// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:6: FunctionDecl=comment_to_html_conversion_5:{{.*}} FullCommentAsHTML=[<p class="para-brief"> Bbb.</p><p> Aaa.</p><p> Ccc.</p>] FullCommentAsXML=[<Function file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_5</Name><USR>c:@F@comment_to_html_conversion_5#</USR><Declaration>void comment_to_html_conversion_5()</Declaration><Abstract><Para> Bbb.</Para></Abstract><Discussion><Para> Aaa.</Para><Para> Ccc.</Para></Discussion></Function>]
82// CHECK-NEXT:  CommentAST=[
83// CHECK-NEXT:    (CXComment_FullComment
84// CHECK-NEXT:       (CXComment_Paragraph
85// CHECK-NEXT:         (CXComment_Text Text=[ Aaa.]))
86// CHECK-NEXT:       (CXComment_Paragraph IsWhitespace
87// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace))
88// CHECK-NEXT:       (CXComment_BlockCommand CommandName=[brief]
89// CHECK-NEXT:         (CXComment_Paragraph
90// CHECK-NEXT:           (CXComment_Text Text=[ Bbb.])))
91// CHECK-NEXT:       (CXComment_Paragraph
92// CHECK-NEXT:         (CXComment_Text Text=[ Ccc.])))]
93
94/// \brief Aaa.
95/// \brief Bbb.
96void comment_to_html_conversion_6();
97
98// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:6: FunctionDecl=comment_to_html_conversion_6:{{.*}} FullCommentAsHTML=[<p class="para-brief"> Aaa. </p><p class="para-brief"> Bbb.</p>] FullCommentAsXML=[<Function file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_6</Name><USR>c:@F@comment_to_html_conversion_6#</USR><Declaration>void comment_to_html_conversion_6()</Declaration><Abstract><Para> Aaa. </Para></Abstract><Discussion><Para> Bbb.</Para></Discussion></Function>]
99// CHECK-NEXT:  CommentAST=[
100// CHECK-NEXT:    (CXComment_FullComment
101// CHECK-NEXT:       (CXComment_Paragraph IsWhitespace
102// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace))
103// CHECK-NEXT:       (CXComment_BlockCommand CommandName=[brief]
104// CHECK-NEXT:         (CXComment_Paragraph
105// CHECK-NEXT:           (CXComment_Text Text=[ Aaa.] HasTrailingNewline)
106// CHECK-NEXT:           (CXComment_Text Text=[ ] IsWhitespace)))
107// CHECK-NEXT:       (CXComment_BlockCommand CommandName=[brief]
108// CHECK-NEXT:         (CXComment_Paragraph
109// CHECK-NEXT:           (CXComment_Text Text=[ Bbb.]))))]
110
111/// Aaa.
112///
113/// \return Bbb.
114void comment_to_html_conversion_7();
115
116// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:6: FunctionDecl=comment_to_html_conversion_7:{{.*}} FullCommentAsHTML=[<p class="para-brief"> Aaa.</p><p class="para-returns"><span class="word-returns">Returns</span>  Bbb.</p>] FullCommentAsXML=[<Function file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_7</Name><USR>c:@F@comment_to_html_conversion_7#</USR><Declaration>void comment_to_html_conversion_7()</Declaration><Abstract><Para> Aaa.</Para></Abstract><ResultDiscussion><Para> Bbb.</Para></ResultDiscussion></Function>]
117// CHECK-NEXT:  CommentAST=[
118// CHECK-NEXT:    (CXComment_FullComment
119// CHECK-NEXT:       (CXComment_Paragraph
120// CHECK-NEXT:         (CXComment_Text Text=[ Aaa.]))
121// CHECK-NEXT:       (CXComment_Paragraph IsWhitespace
122// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace))
123// CHECK-NEXT:       (CXComment_BlockCommand CommandName=[return]
124// CHECK-NEXT:         (CXComment_Paragraph
125// CHECK-NEXT:           (CXComment_Text Text=[ Bbb.]))))]
126
127/// Aaa.
128///
129/// \returns Bbb.
130void comment_to_html_conversion_8();
131
132// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:6: FunctionDecl=comment_to_html_conversion_8:{{.*}} FullCommentAsHTML=[<p class="para-brief"> Aaa.</p><p class="para-returns"><span class="word-returns">Returns</span>  Bbb.</p>] FullCommentAsXML=[<Function file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_8</Name><USR>c:@F@comment_to_html_conversion_8#</USR><Declaration>void comment_to_html_conversion_8()</Declaration><Abstract><Para> Aaa.</Para></Abstract><ResultDiscussion><Para> Bbb.</Para></ResultDiscussion></Function>]
133// CHECK-NEXT:  CommentAST=[
134// CHECK-NEXT:    (CXComment_FullComment
135// CHECK-NEXT:       (CXComment_Paragraph
136// CHECK-NEXT:         (CXComment_Text Text=[ Aaa.]))
137// CHECK-NEXT:       (CXComment_Paragraph IsWhitespace
138// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace))
139// CHECK-NEXT:       (CXComment_BlockCommand CommandName=[returns]
140// CHECK-NEXT:         (CXComment_Paragraph
141// CHECK-NEXT:           (CXComment_Text Text=[ Bbb.]))))]
142
143/// Aaa.
144///
145/// \result Bbb.
146void comment_to_html_conversion_9();
147
148// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:6: FunctionDecl=comment_to_html_conversion_9:{{.*}} FullCommentAsHTML=[<p class="para-brief"> Aaa.</p><p class="para-returns"><span class="word-returns">Returns</span>  Bbb.</p>] FullCommentAsXML=[<Function file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_9</Name><USR>c:@F@comment_to_html_conversion_9#</USR><Declaration>void comment_to_html_conversion_9()</Declaration><Abstract><Para> Aaa.</Para></Abstract><ResultDiscussion><Para> Bbb.</Para></ResultDiscussion></Function>]
149// CHECK-NEXT:  CommentAST=[
150// CHECK-NEXT:    (CXComment_FullComment
151// CHECK-NEXT:       (CXComment_Paragraph
152// CHECK-NEXT:         (CXComment_Text Text=[ Aaa.]))
153// CHECK-NEXT:       (CXComment_Paragraph IsWhitespace
154// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace))
155// CHECK-NEXT:       (CXComment_BlockCommand CommandName=[result]
156// CHECK-NEXT:         (CXComment_Paragraph
157// CHECK-NEXT:           (CXComment_Text Text=[ Bbb.]))))]
158
159/// \returns Aaa.
160/// \returns Bbb.
161void comment_to_html_conversion_10();
162
163// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:6: FunctionDecl=comment_to_html_conversion_10:{{.*}} FullCommentAsHTML=[<p class="para-returns"><span class="word-returns">Returns</span>  Bbb.</p><p class="para-returns"><span class="word-returns">Returns</span>  Aaa. </p>] FullCommentAsXML=[<Function file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_10</Name><USR>c:@F@comment_to_html_conversion_10#</USR><Declaration>void comment_to_html_conversion_10()</Declaration><ResultDiscussion><Para> Aaa. </Para></ResultDiscussion><Discussion><Para> Bbb.</Para></Discussion></Function>]
164// CHECK-NEXT:  CommentAST=[
165// CHECK-NEXT:    (CXComment_FullComment
166// CHECK-NEXT:       (CXComment_Paragraph IsWhitespace
167// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace))
168// CHECK-NEXT:       (CXComment_BlockCommand CommandName=[returns]
169// CHECK-NEXT:         (CXComment_Paragraph
170// CHECK-NEXT:           (CXComment_Text Text=[ Aaa.] HasTrailingNewline)
171// CHECK-NEXT:           (CXComment_Text Text=[ ] IsWhitespace)))
172// CHECK-NEXT:       (CXComment_BlockCommand CommandName=[returns]
173// CHECK-NEXT:         (CXComment_Paragraph
174// CHECK-NEXT:           (CXComment_Text Text=[ Bbb.]))))]
175
176/// Aaa.
177///
178/// Bbb.
179///
180/// \returns Ccc.
181void comment_to_html_conversion_11();
182
183// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:6: FunctionDecl=comment_to_html_conversion_11:{{.*}} FullCommentAsHTML=[<p class="para-brief"> Aaa.</p><p> Bbb.</p><p class="para-returns"><span class="word-returns">Returns</span>  Ccc.</p>] FullCommentAsXML=[<Function file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_11</Name><USR>c:@F@comment_to_html_conversion_11#</USR><Declaration>void comment_to_html_conversion_11()</Declaration><Abstract><Para> Aaa.</Para></Abstract><ResultDiscussion><Para> Ccc.</Para></ResultDiscussion><Discussion><Para> Bbb.</Para></Discussion></Function>]
184// CHECK-NEXT:  CommentAST=[
185// CHECK-NEXT:    (CXComment_FullComment
186// CHECK-NEXT:       (CXComment_Paragraph
187// CHECK-NEXT:         (CXComment_Text Text=[ Aaa.]))
188// CHECK-NEXT:       (CXComment_Paragraph
189// CHECK-NEXT:         (CXComment_Text Text=[ Bbb.]))
190// CHECK-NEXT:       (CXComment_Paragraph IsWhitespace
191// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace))
192// CHECK-NEXT:       (CXComment_BlockCommand CommandName=[returns]
193// CHECK-NEXT:         (CXComment_Paragraph
194// CHECK-NEXT:           (CXComment_Text Text=[ Ccc.]))))]
195
196/// \param
197void comment_to_html_conversion_12(int x1);
198
199// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:6: FunctionDecl=comment_to_html_conversion_12:{{.*}} FullCommentAsHTML=[] FullCommentAsXML=[<Function file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_12</Name><USR>c:@F@comment_to_html_conversion_12#I#</USR><Declaration>void comment_to_html_conversion_12(int x1)</Declaration></Function>]
200// CHECK-NEXT:  CommentAST=[
201// CHECK-NEXT:    (CXComment_FullComment
202// CHECK-NEXT:       (CXComment_Paragraph IsWhitespace
203// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace))
204// CHECK-NEXT:       (CXComment_ParamCommand in implicitly ParamName=[] ParamIndex=Invalid
205// CHECK-NEXT:         (CXComment_Paragraph IsWhitespace)))]
206
207/// \param x1 Aaa.
208void comment_to_html_conversion_13(int x1);
209
210// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:6: FunctionDecl=comment_to_html_conversion_13:{{.*}} FullCommentAsHTML=[<dl><dt class="param-name-index-0">x1</dt><dd class="param-descr-index-0"> Aaa.</dd></dl>] FullCommentAsXML=[<Function file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_13</Name><USR>c:@F@comment_to_html_conversion_13#I#</USR><Declaration>void comment_to_html_conversion_13(int x1)</Declaration><Parameters><Parameter><Name>x1</Name><Index>0</Index><Direction isExplicit="0">in</Direction><Discussion><Para> Aaa.</Para></Discussion></Parameter></Parameters></Function>]
211// CHECK-NEXT:  CommentAST=[
212// CHECK-NEXT:    (CXComment_FullComment
213// CHECK-NEXT:       (CXComment_Paragraph IsWhitespace
214// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace))
215// CHECK-NEXT:       (CXComment_ParamCommand in implicitly ParamName=[x1] ParamIndex=0
216// CHECK-NEXT:         (CXComment_Paragraph
217// CHECK-NEXT:           (CXComment_Text Text=[ Aaa.]))))]
218
219/// \param zzz Aaa.
220void comment_to_html_conversion_14(int x1);
221
222// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:6: FunctionDecl=comment_to_html_conversion_14:{{.*}} FullCommentAsHTML=[<dl><dt class="param-name-index-invalid">zzz</dt><dd class="param-descr-index-invalid"> Aaa.</dd></dl>] FullCommentAsXML=[<Function file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_14</Name><USR>c:@F@comment_to_html_conversion_14#I#</USR><Declaration>void comment_to_html_conversion_14(int x1)</Declaration><Parameters><Parameter><Name>zzz</Name><Direction isExplicit="0">in</Direction><Discussion><Para> Aaa.</Para></Discussion></Parameter></Parameters></Function>]
223// CHECK-NEXT:  CommentAST=[
224// CHECK-NEXT:    (CXComment_FullComment
225// CHECK-NEXT:       (CXComment_Paragraph IsWhitespace
226// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace))
227// CHECK-NEXT:       (CXComment_ParamCommand in implicitly ParamName=[zzz] ParamIndex=Invalid
228// CHECK-NEXT:         (CXComment_Paragraph
229// CHECK-NEXT:           (CXComment_Text Text=[ Aaa.]))))]
230
231/// \param x2 Bbb.
232/// \param x1 Aaa.
233void comment_to_html_conversion_15(int x1, int x2);
234
235// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:6: FunctionDecl=comment_to_html_conversion_15:{{.*}} FullCommentAsHTML=[<dl><dt class="param-name-index-0">x1</dt><dd class="param-descr-index-0"> Aaa.</dd><dt class="param-name-index-1">x2</dt><dd class="param-descr-index-1"> Bbb. </dd></dl>] FullCommentAsXML=[<Function file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_15</Name><USR>c:@F@comment_to_html_conversion_15#I#I#</USR><Declaration>void comment_to_html_conversion_15(int x1, int x2)</Declaration><Parameters><Parameter><Name>x1</Name><Index>0</Index><Direction isExplicit="0">in</Direction><Discussion><Para> Aaa.</Para></Discussion></Parameter><Parameter><Name>x2</Name><Index>1</Index><Direction isExplicit="0">in</Direction><Discussion><Para> Bbb. </Para></Discussion></Parameter></Parameters></Function>]
236// CHECK-NEXT:  CommentAST=[
237// CHECK-NEXT:    (CXComment_FullComment
238// CHECK-NEXT:       (CXComment_Paragraph IsWhitespace
239// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace))
240// CHECK-NEXT:       (CXComment_ParamCommand in implicitly ParamName=[x2] ParamIndex=1
241// CHECK-NEXT:         (CXComment_Paragraph
242// CHECK-NEXT:           (CXComment_Text Text=[ Bbb.] HasTrailingNewline)
243// CHECK-NEXT:           (CXComment_Text Text=[ ] IsWhitespace)))
244// CHECK-NEXT:       (CXComment_ParamCommand in implicitly ParamName=[x1] ParamIndex=0
245// CHECK-NEXT:         (CXComment_Paragraph
246// CHECK-NEXT:           (CXComment_Text Text=[ Aaa.]))))]
247
248/// \param x2 Bbb.
249/// \param zzz Aaa.
250/// \param x1 Aaa.
251void comment_to_html_conversion_16(int x1, int x2);
252
253// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:6: FunctionDecl=comment_to_html_conversion_16:{{.*}} FullCommentAsHTML=[<dl><dt class="param-name-index-0">x1</dt><dd class="param-descr-index-0"> Aaa.</dd><dt class="param-name-index-1">x2</dt><dd class="param-descr-index-1"> Bbb. </dd><dt class="param-name-index-invalid">zzz</dt><dd class="param-descr-index-invalid"> Aaa. </dd></dl>] FullCommentAsXML=[<Function file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_16</Name><USR>c:@F@comment_to_html_conversion_16#I#I#</USR><Declaration>void comment_to_html_conversion_16(int x1, int x2)</Declaration><Parameters><Parameter><Name>x1</Name><Index>0</Index><Direction isExplicit="0">in</Direction><Discussion><Para> Aaa.</Para></Discussion></Parameter><Parameter><Name>x2</Name><Index>1</Index><Direction isExplicit="0">in</Direction><Discussion><Para> Bbb. </Para></Discussion></Parameter><Parameter><Name>zzz</Name><Direction isExplicit="0">in</Direction><Discussion><Para> Aaa. </Para></Discussion></Parameter></Parameters></Function>]
254// CHECK-NEXT:  CommentAST=[
255// CHECK-NEXT:    (CXComment_FullComment
256// CHECK-NEXT:       (CXComment_Paragraph IsWhitespace
257// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace))
258// CHECK-NEXT:       (CXComment_ParamCommand in implicitly ParamName=[x2] ParamIndex=1
259// CHECK-NEXT:         (CXComment_Paragraph
260// CHECK-NEXT:           (CXComment_Text Text=[ Bbb.] HasTrailingNewline)
261// CHECK-NEXT:           (CXComment_Text Text=[ ] IsWhitespace)))
262// CHECK-NEXT:       (CXComment_ParamCommand in implicitly ParamName=[zzz] ParamIndex=Invalid
263// CHECK-NEXT:         (CXComment_Paragraph
264// CHECK-NEXT:           (CXComment_Text Text=[ Aaa.] HasTrailingNewline)
265// CHECK-NEXT:           (CXComment_Text Text=[ ] IsWhitespace)))
266// CHECK-NEXT:       (CXComment_ParamCommand in implicitly ParamName=[x1] ParamIndex=0
267// CHECK-NEXT:         (CXComment_Paragraph
268// CHECK-NEXT:           (CXComment_Text Text=[ Aaa.]))))]
269
270/// \tparam
271/// \param aaa Blah blah
272template<typename T>
273void comment_to_html_conversion_17(T aaa);
274
275// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:6: FunctionTemplate=comment_to_html_conversion_17:{{.*}} FullCommentAsHTML=[<dl><dt class="param-name-index-0">aaa</dt><dd class="param-descr-index-0"> Blah blah</dd></dl>] FullCommentAsXML=[<Function templateKind="template" file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_17</Name><USR>c:@FT@&gt;1#Tcomment_to_html_conversion_17#t0.0#</USR><Declaration>template &lt;typename T&gt; void comment_to_html_conversion_17(T aaa)</Declaration><Parameters><Parameter><Name>aaa</Name><Index>0</Index><Direction isExplicit="0">in</Direction><Discussion><Para> Blah blah</Para></Discussion></Parameter></Parameters></Function>]
276// CHECK-NEXT:  CommentAST=[
277// CHECK-NEXT:    (CXComment_FullComment
278// CHECK-NEXT:       (CXComment_Paragraph IsWhitespace
279// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace))
280// CHECK-NEXT:       (CXComment_TParamCommand ParamName=[] ParamPosition=Invalid
281// CHECK-NEXT:         (CXComment_Paragraph IsWhitespace
282// CHECK-NEXT:           (CXComment_Text Text=[ ] IsWhitespace)))
283// CHECK-NEXT:       (CXComment_ParamCommand in implicitly ParamName=[aaa] ParamIndex=0
284// CHECK-NEXT:         (CXComment_Paragraph
285// CHECK-NEXT:           (CXComment_Text Text=[ Blah blah]))))]
286
287/// \tparam T
288/// \param aaa Blah blah
289template<typename T>
290void comment_to_html_conversion_18(T aaa);
291
292// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:6: FunctionTemplate=comment_to_html_conversion_18:{{.*}} FullCommentAsHTML=[<dl><dt class="param-name-index-0">aaa</dt><dd class="param-descr-index-0"> Blah blah</dd></dl>] FullCommentAsXML=[<Function templateKind="template" file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_18</Name><USR>c:@FT@&gt;1#Tcomment_to_html_conversion_18#t0.0#</USR><Declaration>template &lt;typename T&gt; void comment_to_html_conversion_18(T aaa)</Declaration><Parameters><Parameter><Name>aaa</Name><Index>0</Index><Direction isExplicit="0">in</Direction><Discussion><Para> Blah blah</Para></Discussion></Parameter></Parameters></Function>]
293// CHECK-NEXT:  CommentAST=[
294// CHECK-NEXT:    (CXComment_FullComment
295// CHECK-NEXT:       (CXComment_Paragraph IsWhitespace
296// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace))
297// CHECK-NEXT:       (CXComment_TParamCommand ParamName=[T] ParamPosition={0}
298// CHECK-NEXT:         (CXComment_Paragraph IsWhitespace
299// CHECK-NEXT:           (CXComment_Text Text=[ ] IsWhitespace)))
300// CHECK-NEXT:       (CXComment_ParamCommand in implicitly ParamName=[aaa] ParamIndex=0
301// CHECK-NEXT:         (CXComment_Paragraph
302// CHECK-NEXT:           (CXComment_Text Text=[ Blah blah]))))]
303
304/// \tparam T2 Bbb
305/// \tparam T1 Aaa
306template<typename T1, typename T2>
307void comment_to_html_conversion_19(T1 aaa, T2 bbb);
308
309// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:6: FunctionTemplate=comment_to_html_conversion_19:{{.*}} FullCommentAsHTML=[<dl><dt class="tparam-name-index-0">T1</dt><dd class="tparam-descr-index-0"> Aaa</dd><dt class="tparam-name-index-1">T2</dt><dd class="tparam-descr-index-1"> Bbb </dd></dl>] FullCommentAsXML=[<Function templateKind="template" file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_19</Name><USR>c:@FT@&gt;2#T#Tcomment_to_html_conversion_19#t0.0#t0.1#</USR><Declaration>template &lt;typename T1, typename T2&gt;\nvoid comment_to_html_conversion_19(T1 aaa, T2 bbb)</Declaration><TemplateParameters><Parameter><Name>T1</Name><Index>0</Index><Discussion><Para> Aaa</Para></Discussion></Parameter><Parameter><Name>T2</Name><Index>1</Index><Discussion><Para> Bbb </Para></Discussion></Parameter></TemplateParameters></Function>]
310// CHECK-NEXT:  CommentAST=[
311// CHECK-NEXT:    (CXComment_FullComment
312// CHECK-NEXT:       (CXComment_Paragraph IsWhitespace
313// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace))
314// CHECK-NEXT:       (CXComment_TParamCommand ParamName=[T2] ParamPosition={1}
315// CHECK-NEXT:         (CXComment_Paragraph
316// CHECK-NEXT:           (CXComment_Text Text=[ Bbb] HasTrailingNewline)
317// CHECK-NEXT:           (CXComment_Text Text=[ ] IsWhitespace)))
318// CHECK-NEXT:       (CXComment_TParamCommand ParamName=[T1] ParamPosition={0}
319// CHECK-NEXT:         (CXComment_Paragraph
320// CHECK-NEXT:           (CXComment_Text Text=[ Aaa]))))]
321
322/// \tparam T2 Bbb
323/// \tparam U Zzz
324/// \tparam V Ccc
325/// \tparam T1 Aaa
326template<typename T1, typename T2, int V>
327void comment_to_html_conversion_20(T1 aaa, T2 bbb);
328
329// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:6: FunctionTemplate=comment_to_html_conversion_20:{{.*}} FullCommentAsHTML=[<dl><dt class="tparam-name-index-0">T1</dt><dd class="tparam-descr-index-0"> Aaa</dd><dt class="tparam-name-index-1">T2</dt><dd class="tparam-descr-index-1"> Bbb </dd><dt class="tparam-name-index-2">V</dt><dd class="tparam-descr-index-2"> Ccc </dd><dt class="tparam-name-index-invalid">U</dt><dd class="tparam-descr-index-invalid"> Zzz </dd></dl>] FullCommentAsXML=[<Function templateKind="template" file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_20</Name><USR>c:@FT@&gt;3#T#T#NIcomment_to_html_conversion_20#t0.0#t0.1#</USR><Declaration>template &lt;typename T1, typename T2, int V&gt;\nvoid comment_to_html_conversion_20(T1 aaa, T2 bbb)</Declaration><TemplateParameters><Parameter><Name>T1</Name><Index>0</Index><Discussion><Para> Aaa</Para></Discussion></Parameter><Parameter><Name>T2</Name><Index>1</Index><Discussion><Para> Bbb </Para></Discussion></Parameter><Parameter><Name>V</Name><Index>2</Index><Discussion><Para> Ccc </Para></Discussion></Parameter><Parameter><Name>U</Name><Discussion><Para> Zzz </Para></Discussion></Parameter></TemplateParameters></Function>]
330// CHECK-NEXT:  CommentAST=[
331// CHECK-NEXT:    (CXComment_FullComment
332// CHECK-NEXT:       (CXComment_Paragraph IsWhitespace
333// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace))
334// CHECK-NEXT:       (CXComment_TParamCommand ParamName=[T2] ParamPosition={1}
335// CHECK-NEXT:         (CXComment_Paragraph
336// CHECK-NEXT:           (CXComment_Text Text=[ Bbb] HasTrailingNewline)
337// CHECK-NEXT:           (CXComment_Text Text=[ ] IsWhitespace)))
338// CHECK-NEXT:       (CXComment_TParamCommand ParamName=[U] ParamPosition=Invalid
339// CHECK-NEXT:         (CXComment_Paragraph
340// CHECK-NEXT:           (CXComment_Text Text=[ Zzz] HasTrailingNewline)
341// CHECK-NEXT:           (CXComment_Text Text=[ ] IsWhitespace)))
342// CHECK-NEXT:       (CXComment_TParamCommand ParamName=[V] ParamPosition={2}
343// CHECK-NEXT:         (CXComment_Paragraph
344// CHECK-NEXT:           (CXComment_Text Text=[ Ccc] HasTrailingNewline)
345// CHECK-NEXT:           (CXComment_Text Text=[ ] IsWhitespace)))
346// CHECK-NEXT:       (CXComment_TParamCommand ParamName=[T1] ParamPosition={0}
347// CHECK-NEXT:         (CXComment_Paragraph
348// CHECK-NEXT:           (CXComment_Text Text=[ Aaa]))))]
349
350/// \tparam TTT Ddd
351/// \tparam C Ccc
352/// \tparam T Aaa
353/// \tparam TT Bbb
354template<template<template<typename T> class TT, class C> class TTT>
355void comment_to_html_conversion_21();
356
357// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:6: FunctionTemplate=comment_to_html_conversion_21:{{.*}} FullCommentAsHTML=[<dl><dt class="tparam-name-index-0">TTT</dt><dd class="tparam-descr-index-0"> Ddd </dd><dt class="tparam-name-index-other">C</dt><dd class="tparam-descr-index-other"> Ccc </dd><dt class="tparam-name-index-other">T</dt><dd class="tparam-descr-index-other"> Aaa </dd><dt class="tparam-name-index-other">TT</dt><dd class="tparam-descr-index-other"> Bbb</dd></dl>] FullCommentAsXML=[<Function templateKind="template" file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_21</Name><USR>c:@FT@&gt;1#t&gt;2#t&gt;1#T#Tcomment_to_html_conversion_21#</USR><Declaration>template &lt;template &lt;template &lt;typename T&gt; class TT, class C&gt; class TTT&gt;\nvoid comment_to_html_conversion_21()</Declaration><TemplateParameters><Parameter><Name>TTT</Name><Index>0</Index><Discussion><Para> Ddd </Para></Discussion></Parameter><Parameter><Name>C</Name><Discussion><Para> Ccc </Para></Discussion></Parameter><Parameter><Name>T</Name><Discussion><Para> Aaa </Para></Discussion></Parameter><Parameter><Name>TT</Name><Discussion><Para> Bbb</Para></Discussion></Parameter></TemplateParameters></Function>]
358// CHECK-NEXT:  CommentAST=[
359// CHECK-NEXT:    (CXComment_FullComment
360// CHECK-NEXT:       (CXComment_Paragraph IsWhitespace
361// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace))
362// CHECK-NEXT:       (CXComment_TParamCommand ParamName=[TTT] ParamPosition={0}
363// CHECK-NEXT:         (CXComment_Paragraph
364// CHECK-NEXT:           (CXComment_Text Text=[ Ddd] HasTrailingNewline)
365// CHECK-NEXT:           (CXComment_Text Text=[ ] IsWhitespace)))
366// CHECK-NEXT:       (CXComment_TParamCommand ParamName=[C] ParamPosition={0, 1}
367// CHECK-NEXT:         (CXComment_Paragraph
368// CHECK-NEXT:           (CXComment_Text Text=[ Ccc] HasTrailingNewline)
369// CHECK-NEXT:           (CXComment_Text Text=[ ] IsWhitespace)))
370// CHECK-NEXT:       (CXComment_TParamCommand ParamName=[T] ParamPosition={0, 0, 0}
371// CHECK-NEXT:         (CXComment_Paragraph
372// CHECK-NEXT:           (CXComment_Text Text=[ Aaa] HasTrailingNewline)
373// CHECK-NEXT:           (CXComment_Text Text=[ ] IsWhitespace)))
374// CHECK-NEXT:       (CXComment_TParamCommand ParamName=[TT] ParamPosition={0, 0}
375// CHECK-NEXT:         (CXComment_Paragraph
376// CHECK-NEXT:           (CXComment_Text Text=[ Bbb]))))]
377
378/// \brief Aaa.
379///
380/// Bbb.
381///
382/// \param x2 Ddd.
383/// \param x1 Ccc.
384/// \returns Eee.
385void comment_to_html_conversion_22(int x1, int x2);
386
387// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:6: FunctionDecl=comment_to_html_conversion_22:{{.*}} FullCommentAsHTML=[<p class="para-brief"> Aaa.</p><p> Bbb.</p><dl><dt class="param-name-index-0">x1</dt><dd class="param-descr-index-0"> Ccc. </dd><dt class="param-name-index-1">x2</dt><dd class="param-descr-index-1"> Ddd. </dd></dl><p class="para-returns"><span class="word-returns">Returns</span>  Eee.</p>] FullCommentAsXML=[<Function file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_22</Name><USR>c:@F@comment_to_html_conversion_22#I#I#</USR><Declaration>void comment_to_html_conversion_22(int x1, int x2)</Declaration><Abstract><Para> Aaa.</Para></Abstract><Parameters><Parameter><Name>x1</Name><Index>0</Index><Direction isExplicit="0">in</Direction><Discussion><Para> Ccc. </Para></Discussion></Parameter><Parameter><Name>x2</Name><Index>1</Index><Direction isExplicit="0">in</Direction><Discussion><Para> Ddd. </Para></Discussion></Parameter></Parameters><ResultDiscussion><Para> Eee.</Para></ResultDiscussion><Discussion><Para> Bbb.</Para></Discussion></Function>]
388// CHECK-NEXT:  CommentAST=[
389// CHECK-NEXT:    (CXComment_FullComment
390// CHECK-NEXT:       (CXComment_Paragraph IsWhitespace
391// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace))
392// CHECK-NEXT:       (CXComment_BlockCommand CommandName=[brief]
393// CHECK-NEXT:         (CXComment_Paragraph
394// CHECK-NEXT:           (CXComment_Text Text=[ Aaa.])))
395// CHECK-NEXT:       (CXComment_Paragraph
396// CHECK-NEXT:         (CXComment_Text Text=[ Bbb.]))
397// CHECK-NEXT:       (CXComment_Paragraph IsWhitespace
398// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace))
399// CHECK-NEXT:       (CXComment_ParamCommand in implicitly ParamName=[x2] ParamIndex=1
400// CHECK-NEXT:         (CXComment_Paragraph
401// CHECK-NEXT:           (CXComment_Text Text=[ Ddd.] HasTrailingNewline)
402// CHECK-NEXT:           (CXComment_Text Text=[ ] IsWhitespace)))
403// CHECK-NEXT:       (CXComment_ParamCommand in implicitly ParamName=[x1] ParamIndex=0
404// CHECK-NEXT:         (CXComment_Paragraph
405// CHECK-NEXT:           (CXComment_Text Text=[ Ccc.] HasTrailingNewline)
406// CHECK-NEXT:           (CXComment_Text Text=[ ] IsWhitespace)))
407// CHECK-NEXT:       (CXComment_BlockCommand CommandName=[returns]
408// CHECK-NEXT:         (CXComment_Paragraph
409// CHECK-NEXT:           (CXComment_Text Text=[ Eee.]))))]
410
411/// <br><a href="http://example.com/">Aaa</a>
412void comment_to_html_conversion_23();
413
414// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:6: FunctionDecl=comment_to_html_conversion_23:{{.*}} FullCommentAsHTML=[<p class="para-brief"> <br><a href="http://example.com/">Aaa</a></p>] FullCommentAsXML=[<Function file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_23</Name><USR>c:@F@comment_to_html_conversion_23#</USR><Declaration>void comment_to_html_conversion_23()</Declaration><Abstract><Para> <rawHTML><![CDATA[<br>]]></rawHTML><rawHTML><![CDATA[<a href="http://example.com/">]]></rawHTML>Aaa<rawHTML>&lt;/a&gt;</rawHTML></Para></Abstract></Function>]
415// CHECK-NEXT:  CommentAST=[
416// CHECK-NEXT:    (CXComment_FullComment
417// CHECK-NEXT:       (CXComment_Paragraph
418// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace)
419// CHECK-NEXT:         (CXComment_HTMLStartTag Name=[br])
420// CHECK-NEXT:         (CXComment_HTMLStartTag Name=[a] Attrs: href=http://example.com/)
421// CHECK-NEXT:         (CXComment_Text Text=[Aaa])
422// CHECK-NEXT:         (CXComment_HTMLEndTag Name=[a])))]
423
424/// \verbatim
425/// <a href="http://example.com/">Aaa</a>
426/// <a href='http://example.com/'>Aaa</a>
427/// \endverbatim
428void comment_to_html_conversion_24();
429
430// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:6: FunctionDecl=comment_to_html_conversion_24:{{.*}} FullCommentAsHTML=[<pre> &lt;a href=&quot;http:&#47;&#47;example.com&#47;&quot;&gt;Aaa&lt;&#47;a&gt;\n &lt;a href=&#39;http:&#47;&#47;example.com&#47;&#39;&gt;Aaa&lt;&#47;a&gt;</pre>] FullCommentAsXML=[<Function file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_24</Name><USR>c:@F@comment_to_html_conversion_24#</USR><Declaration>void comment_to_html_conversion_24()</Declaration><Discussion><Verbatim xml:space="preserve" kind="verbatim"> &lt;a href=&quot;http://example.com/">Aaa</a>\n &lt;a href=&apos;http://example.com/'>Aaa</a>;</Verbatim></Discussion></Function>]
431// CHECK-NEXT:  CommentAST=[
432// CHECK-NEXT:    (CXComment_FullComment
433// CHECK-NEXT:       (CXComment_Paragraph IsWhitespace
434// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace))
435// CHECK-NEXT:       (CXComment_VerbatimBlockCommand CommandName=[verbatim]
436// CHECK-NEXT:         (CXComment_VerbatimBlockLine Text=[ <a href="http://example.com/">Aaa</a>])
437// CHECK-NEXT:         (CXComment_VerbatimBlockLine Text=[ <a href='http://example.com/'>Aaa</a>])))]
438
439/// \function foo
440/// \class foo
441/// \method foo
442/// \interface foo
443/// Blah blah.
444void comment_to_html_conversion_25();
445
446// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:6: FunctionDecl=comment_to_html_conversion_25:{{.*}} FullCommentAsHTML=[<p class="para-brief"> Blah blah.</p>] FullCommentAsXML=[<Function file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_25</Name><USR>c:@F@comment_to_html_conversion_25#</USR><Declaration>void comment_to_html_conversion_25()</Declaration><Abstract><Para> Blah blah.</Para></Abstract></Function>]
447// CHECK-NEXT:  CommentAST=[
448// CHECK-NEXT:    (CXComment_FullComment
449// CHECK-NEXT:       (CXComment_Paragraph IsWhitespace
450// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace))
451// CHECK-NEXT:       (CXComment_VerbatimLine Text=[ foo])
452// CHECK-NEXT:       (CXComment_Paragraph IsWhitespace
453// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace))
454// CHECK-NEXT:       (CXComment_VerbatimLine Text=[ foo])
455// CHECK-NEXT:       (CXComment_Paragraph IsWhitespace
456// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace))
457// CHECK-NEXT:       (CXComment_VerbatimLine Text=[ foo])
458// CHECK-NEXT:       (CXComment_Paragraph IsWhitespace
459// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace))
460// CHECK-NEXT:       (CXComment_VerbatimLine Text=[ foo])
461// CHECK-NEXT:       (CXComment_Paragraph
462// CHECK-NEXT:         (CXComment_Text Text=[ Blah blah.])))]
463
464/// \unknown
465void comment_to_html_conversion_26();
466
467// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:6: FunctionDecl=comment_to_html_conversion_26:{{.*}} FullCommentAsHTML=[<p class="para-brief"> </p>] FullCommentAsXML=[<Function file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_26</Name><USR>c:@F@comment_to_html_conversion_26#</USR><Declaration>void comment_to_html_conversion_26()</Declaration><Abstract><Para> </Para></Abstract></Function>]
468// CHECK-NEXT:  CommentAST=[
469// CHECK-NEXT:    (CXComment_FullComment
470// CHECK-NEXT:       (CXComment_Paragraph
471// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace)
472// CHECK-NEXT:         (CXComment_InlineCommand CommandName=[unknown] RenderNormal)))]
473
474/// \b Aaa
475void comment_to_html_conversion_27();
476
477// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:6: FunctionDecl=comment_to_html_conversion_27:{{.*}} FullCommentAsHTML=[<p class="para-brief"> <b>Aaa</b></p>] FullCommentAsXML=[<Function file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_27</Name><USR>c:@F@comment_to_html_conversion_27#</USR><Declaration>void comment_to_html_conversion_27()</Declaration><Abstract><Para> <bold>Aaa</bold></Para></Abstract></Function>]
478// CHECK-NEXT:  CommentAST=[
479// CHECK-NEXT:    (CXComment_FullComment
480// CHECK-NEXT:       (CXComment_Paragraph
481// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace)
482// CHECK-NEXT:         (CXComment_InlineCommand CommandName=[b] RenderBold Arg[0]=Aaa)))]
483
484/// \c Aaa \p Bbb
485void comment_to_html_conversion_28();
486
487// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:6: FunctionDecl=comment_to_html_conversion_28:{{.*}} FullCommentAsHTML=[<p class="para-brief"> <tt>Aaa</tt> <tt>Bbb</tt></p>] FullCommentAsXML=[<Function file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_28</Name><USR>c:@F@comment_to_html_conversion_28#</USR><Declaration>void comment_to_html_conversion_28()</Declaration><Abstract><Para> <monospaced>Aaa</monospaced> <monospaced>Bbb</monospaced></Para></Abstract></Function>]
488// CHECK-NEXT:  CommentAST=[
489// CHECK-NEXT:    (CXComment_FullComment
490// CHECK-NEXT:       (CXComment_Paragraph
491// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace)
492// CHECK-NEXT:         (CXComment_InlineCommand CommandName=[c] RenderMonospaced Arg[0]=Aaa)
493// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace)
494// CHECK-NEXT:         (CXComment_InlineCommand CommandName=[p] RenderMonospaced Arg[0]=Bbb)))]
495
496/// \a Aaa \e Bbb \em Ccc
497void comment_to_html_conversion_29();
498
499// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:6: FunctionDecl=comment_to_html_conversion_29:{{.*}} FullCommentAsHTML=[<p class="para-brief"> <em>Aaa</em> <em>Bbb</em> <em>Ccc</em></p>] FullCommentAsXML=[<Function file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_29</Name><USR>c:@F@comment_to_html_conversion_29#</USR><Declaration>void comment_to_html_conversion_29()</Declaration><Abstract><Para> <emphasized>Aaa</emphasized> <emphasized>Bbb</emphasized> <emphasized>Ccc</emphasized></Para></Abstract></Function>]
500// CHECK-NEXT:  CommentAST=[
501// CHECK-NEXT:    (CXComment_FullComment
502// CHECK-NEXT:       (CXComment_Paragraph
503// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace)
504// CHECK-NEXT:         (CXComment_InlineCommand CommandName=[a] RenderEmphasized Arg[0]=Aaa)
505// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace)
506// CHECK-NEXT:         (CXComment_InlineCommand CommandName=[e] RenderEmphasized Arg[0]=Bbb)
507// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace)
508// CHECK-NEXT:         (CXComment_InlineCommand CommandName=[em] RenderEmphasized Arg[0]=Ccc)))]
509
510/// \a 1<2 \e 3<4 \em 5<6 \param 7<8 aaa \tparam 9<10 bbb
511void comment_to_html_conversion_30();
512
513// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:6: FunctionDecl=comment_to_html_conversion_30:{{.*}} FullCommentAsHTML=[<p class="para-brief"> <em>1&lt;2</em> <em>3&lt;4</em> <em>5&lt;6</em> </p><dl><dt class="tparam-name-index-invalid">9&lt;10</dt><dd class="tparam-descr-index-invalid"> bbb</dd></dl><dl><dt class="param-name-index-invalid">7&lt;8</dt><dd class="param-descr-index-invalid"> aaa </dd></dl>] FullCommentAsXML=[<Function file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_30</Name><USR>c:@F@comment_to_html_conversion_30#</USR><Declaration>void comment_to_html_conversion_30()</Declaration><Abstract><Para> <emphasized>1&lt;2</emphasized> <emphasized>3&lt;4</emphasized> <emphasized>5&lt;6</emphasized> </Para></Abstract><TemplateParameters><Parameter><Name>9&lt;10</Name><Discussion><Para> bbb</Para></Discussion></Parameter></TemplateParameters><Parameters><Parameter><Name>7&lt;8</Name><Direction isExplicit="0">in</Direction><Discussion><Para> aaa </Para></Discussion></Parameter></Parameters></Function>]
514// CHECK-NEXT:  CommentAST=[
515// CHECK-NEXT:    (CXComment_FullComment
516// CHECK-NEXT:       (CXComment_Paragraph
517// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace)
518// CHECK-NEXT:         (CXComment_InlineCommand CommandName=[a] RenderEmphasized Arg[0]=1<2)
519// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace)
520// CHECK-NEXT:         (CXComment_InlineCommand CommandName=[e] RenderEmphasized Arg[0]=3<4)
521// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace)
522// CHECK-NEXT:         (CXComment_InlineCommand CommandName=[em] RenderEmphasized Arg[0]=5<6)
523// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace))
524// CHECK-NEXT:       (CXComment_ParamCommand in implicitly ParamName=[7<8] ParamIndex=Invalid
525// CHECK-NEXT:         (CXComment_Paragraph
526// CHECK-NEXT:           (CXComment_Text Text=[ aaa ])))
527// CHECK-NEXT:       (CXComment_TParamCommand ParamName=[9<10] ParamPosition=Invalid
528// CHECK-NEXT:         (CXComment_Paragraph
529// CHECK-NEXT:           (CXComment_Text Text=[ bbb]))))]
530
531/// \\ \@ \& \$ \# \< \> \% \" \. \::
532void comment_to_html_conversion_31();
533
534// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:6: FunctionDecl=comment_to_html_conversion_31:{{.*}} FullCommentAsHTML=[<p class="para-brief"> \ @ &amp; $ # &lt; &gt; % &quot; . ::</p>] FullCommentAsXML=[<Function file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_31</Name><USR>c:@F@comment_to_html_conversion_31#</USR><Declaration>void comment_to_html_conversion_31()</Declaration><Abstract><Para> \ @ &amp; $ # &lt; &gt; % &quot; . ::</Para></Abstract></Function>]
535// CHECK-NEXT:  CommentAST=[
536// CHECK-NEXT:    (CXComment_FullComment
537// CHECK-NEXT:       (CXComment_Paragraph
538// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace)
539// CHECK-NEXT:         (CXComment_Text Text=[\])
540// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace)
541// CHECK-NEXT:         (CXComment_Text Text=[@])
542// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace)
543// CHECK-NEXT:         (CXComment_Text Text=[&])
544// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace)
545// CHECK-NEXT:         (CXComment_Text Text=[$])
546// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace)
547// CHECK-NEXT:         (CXComment_Text Text=[#])
548// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace)
549// CHECK-NEXT:         (CXComment_Text Text=[<])
550// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace)
551// CHECK-NEXT:         (CXComment_Text Text=[>])
552// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace)
553// CHECK-NEXT:         (CXComment_Text Text=[%])
554// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace)
555// CHECK-NEXT:         (CXComment_Text Text=["])
556// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace)
557// CHECK-NEXT:         (CXComment_Text Text=[.])
558// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace)
559// CHECK-NEXT:         (CXComment_Text Text=[::])))]
560
561/// &amp; &lt; &gt; &quot; &apos; &#109;&#101;&#111;&#119; &#x6d;&#x65;&#x6F;&#X77;
562void comment_to_html_conversion_32();
563
564// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:6: FunctionDecl=comment_to_html_conversion_32:{{.*}} FullCommentAsHTML=[<p class="para-brief"> &amp; &lt; &gt; &quot; &#39; meow meow</p>] FullCommentAsXML=[<Function file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_32</Name><USR>c:@F@comment_to_html_conversion_32#</USR><Declaration>void comment_to_html_conversion_32()</Declaration><Abstract><Para> &amp; &lt; &gt; &quot; &apos; meow  meow</Para></Abstract></Function>]
565// CHECK-NEXT:  CommentAST=[
566// CHECK-NEXT:    (CXComment_FullComment
567// CHECK-NEXT:       (CXComment_Paragraph
568// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace)
569// CHECK-NEXT:         (CXComment_Text Text=[&])
570// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace)
571// CHECK-NEXT:         (CXComment_Text Text=[<])
572// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace)
573// CHECK-NEXT:         (CXComment_Text Text=[>])
574// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace)
575// CHECK-NEXT:         (CXComment_Text Text=["])
576// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace)
577// CHECK-NEXT:         (CXComment_Text Text=['])
578// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace)
579// CHECK-NEXT:         (CXComment_Text Text=[m])
580// CHECK-NEXT:         (CXComment_Text Text=[e])
581// CHECK-NEXT:         (CXComment_Text Text=[o])
582// CHECK-NEXT:         (CXComment_Text Text=[w])
583// CHECK-NEXT:         (CXComment_Text Text=[  ] IsWhitespace)
584// CHECK-NEXT:         (CXComment_Text Text=[m])
585// CHECK-NEXT:         (CXComment_Text Text=[e])
586// CHECK-NEXT:         (CXComment_Text Text=[o])
587// CHECK-NEXT:         (CXComment_Text Text=[w])))]
588
589/// <em>0&lt;i</em>
590void comment_to_html_conversion_33();
591
592// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:6: FunctionDecl=comment_to_html_conversion_33:{{.*}} FullCommentAsHTML=[<p class="para-brief"> <em>0&lt;i</em></p>] FullCommentAsXML=[<Function file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_33</Name><USR>c:@F@comment_to_html_conversion_33#</USR><Declaration>void comment_to_html_conversion_33()</Declaration><Abstract><Para> <rawHTML><![CDATA[<em>]]></rawHTML>0&lt;i<rawHTML>&lt;/em&gt;</rawHTML></Para></Abstract></Function>]
593// CHECK-NEXT:  CommentAST=[
594// CHECK-NEXT:    (CXComment_FullComment
595// CHECK-NEXT:       (CXComment_Paragraph
596// CHECK-NEXT:         (CXComment_Text Text=[ ] IsWhitespace)
597// CHECK-NEXT:         (CXComment_HTMLStartTag Name=[em])
598// CHECK-NEXT:         (CXComment_Text Text=[0])
599// CHECK-NEXT:         (CXComment_Text Text=[<])
600// CHECK-NEXT:         (CXComment_Text Text=[i])
601// CHECK-NEXT:         (CXComment_HTMLEndTag Name=[em])))]
602
603/// Aaa.
604class comment_to_xml_conversion_01 {
605// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-1]]:7: ClassDecl=comment_to_xml_conversion_01:{{.*}} FullCommentAsXML=[<Class file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-1]]" column="7"><Name>comment_to_xml_conversion_01</Name><USR>c:@C@comment_to_xml_conversion_01</USR><Declaration>class comment_to_xml_conversion_01 {}</Declaration><Abstract><Para> Aaa.</Para></Abstract></Class>]
606
607  /// \param aaa Blah blah.
608  comment_to_xml_conversion_01(int aaa);
609
610// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:3: CXXConstructor=comment_to_xml_conversion_01:{{.*}} FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="3"><Name>comment_to_xml_conversion_01</Name><USR>c:@C@comment_to_xml_conversion_01@F@comment_to_xml_conversion_01#I#</USR><Declaration>comment_to_xml_conversion_01(int aaa)</Declaration><Parameters><Parameter><Name>aaa</Name><Index>0</Index><Direction isExplicit="0">in</Direction><Discussion><Para> Blah blah.</Para></Discussion></Parameter></Parameters></Function>]
611
612  /// Aaa.
613  ~comment_to_xml_conversion_01();
614
615// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:3: CXXDestructor=~comment_to_xml_conversion_01:{{.*}} FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="3"><Name>~comment_to_xml_conversion_01</Name><USR>c:@C@comment_to_xml_conversion_01@F@~comment_to_xml_conversion_01#</USR><Declaration>void ~comment_to_xml_conversion_01()</Declaration><Abstract><Para> Aaa.</Para></Abstract></Function>]
616
617  /// \param aaa Blah blah.
618  int comment_to_xml_conversion_02(int aaa);
619
620// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:7: CXXMethod=comment_to_xml_conversion_02:{{.*}} FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="7"><Name>comment_to_xml_conversion_02</Name><USR>c:@C@comment_to_xml_conversion_01@F@comment_to_xml_conversion_02#I#</USR><Declaration>int comment_to_xml_conversion_02(int aaa)</Declaration><Parameters><Parameter><Name>aaa</Name><Index>0</Index><Direction isExplicit="0">in</Direction><Discussion><Para> Blah blah.</Para></Discussion></Parameter></Parameters></Function>]
621
622  /// \param aaa Blah blah.
623  static int comment_to_xml_conversion_03(int aaa);
624
625// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:14: CXXMethod=comment_to_xml_conversion_03:{{.*}} FullCommentAsXML=[<Function isClassMethod="1" file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="14"><Name>comment_to_xml_conversion_03</Name><USR>c:@C@comment_to_xml_conversion_01@F@comment_to_xml_conversion_03#I#S</USR><Declaration>static int comment_to_xml_conversion_03(int aaa)</Declaration><Parameters><Parameter><Name>aaa</Name><Index>0</Index><Direction isExplicit="0">in</Direction><Discussion><Para> Blah blah.</Para></Discussion></Parameter></Parameters></Function>]
626
627  /// Aaa.
628  int comment_to_xml_conversion_04;
629
630// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:7: FieldDecl=comment_to_xml_conversion_04:{{.*}} FullCommentAsXML=[<Variable file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="7"><Name>comment_to_xml_conversion_04</Name><USR>c:@C@comment_to_xml_conversion_01@FI@comment_to_xml_conversion_04</USR><Declaration>int comment_to_xml_conversion_04</Declaration><Abstract><Para> Aaa.</Para></Abstract></Variable>]
631
632  /// Aaa.
633  static int comment_to_xml_conversion_05;
634
635// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:14: VarDecl=comment_to_xml_conversion_05:{{.*}} FullCommentAsXML=[<Variable file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="14"><Name>comment_to_xml_conversion_05</Name><USR>c:@C@comment_to_xml_conversion_01@comment_to_xml_conversion_05</USR><Declaration>static int comment_to_xml_conversion_05</Declaration><Abstract><Para> Aaa.</Para></Abstract></Variable>]
636
637  /// \param aaa Blah blah.
638  void operator()(int aaa);
639
640// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:8: CXXMethod=operator():{{.*}} FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="8"><Name>operator()</Name><USR>c:@C@comment_to_xml_conversion_01@F@operator()#I#</USR><Declaration>void operator()(int aaa)</Declaration><Parameters><Parameter><Name>aaa</Name><Index>0</Index><Direction isExplicit="0">in</Direction><Discussion><Para> Blah blah.</Para></Discussion></Parameter></Parameters></Function>]
641
642  /// Aaa.
643  operator bool();
644
645// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:3: CXXConversion=operator _Bool:{{.*}} FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="3"><Name>operator _Bool</Name><USR>c:@C@comment_to_xml_conversion_01@F@operator _Bool#</USR><Declaration>bool operator _Bool()</Declaration><Abstract><Para> Aaa.</Para></Abstract></Function>]
646
647  /// Aaa.
648  typedef int comment_to_xml_conversion_06;
649
650// USR is line-dependent here, so filter it with a regexp.
651// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-3]]:15: TypedefDecl=comment_to_xml_conversion_06:{{.*}} FullCommentAsXML=[<Typedef file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-3]]" column="15"><Name>comment_to_xml_conversion_06</Name><USR>{{[^<]+}}</USR><Declaration>typedef int comment_to_xml_conversion_06</Declaration><Abstract><Para> Aaa.</Para></Abstract></Typedef>]
652
653  /// Aaa.
654  using comment_to_xml_conversion_07 = int;
655
656// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:9: TypeAliasDecl=comment_to_xml_conversion_07:{{.*}} FullCommentAsXML=[<Typedef file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="9"><Name>comment_to_xml_conversion_07</Name><USR>c:@C@comment_to_xml_conversion_01@comment_to_xml_conversion_07</USR><Declaration>using comment_to_xml_conversion_07 = int</Declaration><Abstract><Para> Aaa.</Para></Abstract></Typedef>]
657
658  /// Aaa.
659  template<typename T, typename U>
660  class comment_to_xml_conversion_08 { };
661
662// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:9: ClassTemplate=comment_to_xml_conversion_08:{{.*}} FullCommentAsXML=[<Class templateKind="template" file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="9"><Name>comment_to_xml_conversion_08</Name><USR>c:@C@comment_to_xml_conversion_01@CT&gt;2#T#T@comment_to_xml_conversion_08</USR><Declaration>template &lt;typename T, typename U&gt; class comment_to_xml_conversion_08 {}</Declaration><Abstract><Para> Aaa.</Para></Abstract></Class>]
663
664  /// Aaa.
665  template<typename T>
666  using comment_to_xml_conversion_09 = comment_to_xml_conversion_08<T, int>;
667
668// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:3: UnexposedDecl=comment_to_xml_conversion_09:{{.*}} FullCommentAsXML=[<Typedef file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="3"><Name>comment_to_xml_conversion_09</Name><USR>c:@C@comment_to_xml_conversion_01@comment_to_xml_conversion_09</USR><Declaration>template &lt;typename T&gt;\nusing comment_to_xml_conversion_09 = comment_to_xml_conversion_08&lt;T, int&gt;</Declaration><Abstract><Para> Aaa.</Para></Abstract></Typedef>]
669};
670
671/// Aaa.
672template<typename T, typename U>
673void comment_to_xml_conversion_10(T aaa, U bbb);
674
675// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:6: FunctionTemplate=comment_to_xml_conversion_10:{{.*}} FullCommentAsXML=[<Function templateKind="template" file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_xml_conversion_10</Name><USR>c:@FT@&gt;2#T#Tcomment_to_xml_conversion_10#t0.0#t0.1#</USR><Declaration>template &lt;typename T, typename U&gt;\nvoid comment_to_xml_conversion_10(T aaa, U bbb)</Declaration><Abstract><Para> Aaa.</Para></Abstract></Function>]
676
677/// Aaa.
678template<>
679void comment_to_xml_conversion_10(int aaa, int bbb);
680
681// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:6: FunctionDecl=comment_to_xml_conversion_10:{{.*}} FullCommentAsXML=[<Function templateKind="specialization" file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_xml_conversion_10</Name><USR>c:@F@comment_to_xml_conversion_10&lt;#I#I&gt;#I#I#</USR><Declaration>void comment_to_xml_conversion_10(int aaa, int bbb)</Declaration><Abstract><Para> Aaa.</Para></Abstract></Function>]
682
683/// Aaa.
684template<typename T, typename U>
685class comment_to_xml_conversion_11 { };
686
687// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:7: ClassTemplate=comment_to_xml_conversion_11:{{.*}} FullCommentAsXML=[<Class templateKind="template" file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="7"><Name>comment_to_xml_conversion_11</Name><USR>c:@CT&gt;2#T#T@comment_to_xml_conversion_11</USR><Declaration>template &lt;typename T, typename U&gt; class comment_to_xml_conversion_11 {}</Declaration><Abstract><Para> Aaa.</Para></Abstract></Class>]
688
689/// Aaa.
690template<typename T>
691class comment_to_xml_conversion_11<T, int> { };
692
693// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:7: ClassTemplatePartialSpecialization=comment_to_xml_conversion_11:{{.*}} FullCommentAsXML=[<Class templateKind="partialSpecialization" file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="7"><Name>comment_to_xml_conversion_11</Name><USR>c:@CP&gt;1#T@comment_to_xml_conversion_11&gt;#t0.0#I</USR><Declaration>class comment_to_xml_conversion_11 {}</Declaration><Abstract><Para> Aaa.</Para></Abstract></Class>]
694
695/// Aaa.
696template<>
697class comment_to_xml_conversion_11<int, int> { };
698
699// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:7: ClassDecl=comment_to_xml_conversion_11:{{.*}} FullCommentAsXML=[<Class templateKind="specialization" file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="7"><Name>comment_to_xml_conversion_11</Name><USR>c:@C@comment_to_xml_conversion_11&gt;#I#I</USR><Declaration>class comment_to_xml_conversion_11 {}</Declaration><Abstract><Para> Aaa.</Para></Abstract></Class>]
700
701/// Aaa.
702int comment_to_xml_conversion_12;
703
704// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-2]]:5: VarDecl=comment_to_xml_conversion_12:{{.*}} FullCommentAsXML=[<Variable file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-2]]" column="5"><Name>comment_to_xml_conversion_12</Name><USR>c:@comment_to_xml_conversion_12</USR><Declaration>int comment_to_xml_conversion_12</Declaration><Abstract><Para> Aaa.</Para></Abstract></Variable>]
705
706/// Aaa.
707namespace comment_to_xml_conversion_13 {
708// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-1]]:11: Namespace=comment_to_xml_conversion_13:{{.*}} FullCommentAsXML=[<Namespace file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-1]]" column="11"><Name>comment_to_xml_conversion_13</Name><USR>c:@N@comment_to_xml_conversion_13</USR><Declaration>namespace comment_to_xml_conversion_13 {}</Declaration><Abstract><Para> Aaa.</Para></Abstract></Namespace>]
709
710  /// Aaa.
711  namespace comment_to_xml_conversion_14 {
712// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-1]]:13: Namespace=comment_to_xml_conversion_14:{{.*}} FullCommentAsXML=[<Namespace file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-1]]" column="13"><Name>comment_to_xml_conversion_14</Name><USR>c:@N@comment_to_xml_conversion_13@N@comment_to_xml_conversion_14</USR><Declaration>namespace comment_to_xml_conversion_14 {}</Declaration><Abstract><Para> Aaa.</Para></Abstract></Namespace>]
713  }
714}
715
716/// Aaa.
717enum comment_to_xml_conversion_15 {
718// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-1]]:6: EnumDecl=comment_to_xml_conversion_15:{{.*}} FullCommentAsXML=[<Enum file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-1]]" column="6"><Name>comment_to_xml_conversion_15</Name><USR>c:@E@comment_to_xml_conversion_15</USR><Declaration>enum comment_to_xml_conversion_15{{( : int)?}} {}</Declaration><Abstract><Para> Aaa.</Para></Abstract></Enum>]
719
720  /// Aaa.
721  comment_to_xml_conversion_16
722// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-1]]:3: EnumConstantDecl=comment_to_xml_conversion_16:{{.*}} FullCommentAsXML=[<Variable file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-1]]" column="3"><Name>comment_to_xml_conversion_16</Name><USR>c:@E@comment_to_xml_conversion_15@comment_to_xml_conversion_16</USR><Declaration>comment_to_xml_conversion_16</Declaration><Abstract><Para> Aaa.</Para></Abstract></Variable>]
723};
724
725/// Aaa.
726enum class comment_to_xml_conversion_17 {
727// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-1]]:12: EnumDecl=comment_to_xml_conversion_17:{{.*}} FullCommentAsXML=[<Enum file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-1]]" column="12"><Name>comment_to_xml_conversion_17</Name><USR>c:@E@comment_to_xml_conversion_17</USR><Declaration>enum class comment_to_xml_conversion_17 : int {}</Declaration><Abstract><Para> Aaa.</Para></Abstract></Enum>]
728
729  /// Aaa.
730  comment_to_xml_conversion_18
731// CHECK: comment-to-html-xml-conversion.cpp:[[@LINE-1]]:3: EnumConstantDecl=comment_to_xml_conversion_18:{{.*}} FullCommentAsXML=[<Variable file="{{[^"]+}}comment-to-html-xml-conversion.cpp" line="[[@LINE-1]]" column="3"><Name>comment_to_xml_conversion_18</Name><USR>c:@E@comment_to_xml_conversion_17@comment_to_xml_conversion_18</USR><Declaration>comment_to_xml_conversion_18</Declaration><Abstract><Para> Aaa.</Para></Abstract></Variable>]
732};
733
734#endif
735
736