blob: b1b72ff573ebbee66809c5a700d65a948a07a1c4 [file] [log] [blame]
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +00001// Run lines are sensitive to line numbers and come below the code.
2
3#ifndef HEADER
4#define HEADER
5
6// Not a Doxygen comment. NOT_DOXYGEN
7void notdoxy1(void);
8
9/* Not a Doxygen comment. NOT_DOXYGEN */
10void notdoxy2(void);
11
12/*/ Not a Doxygen comment. NOT_DOXYGEN */
13void notdoxy3(void);
14
15/** Doxygen comment. isdoxy4 IS_DOXYGEN_SINGLE */
16void isdoxy4(void);
17
18/**
19 * Doxygen comment. isdoxy5 IS_DOXYGEN_SINGLE */
20void isdoxy5(void);
21
22/**
23 * Doxygen comment.
24 * isdoxy6 IS_DOXYGEN_SINGLE */
25void isdoxy6(void);
26
27/**
28 * Doxygen comment.
29 * isdoxy7 IS_DOXYGEN_SINGLE
30 */
31void isdoxy7(void);
32
33/*! Doxygen comment. isdoxy8 IS_DOXYGEN_SINGLE */
34void isdoxy8(void);
35
36/// Doxygen comment. isdoxy9 IS_DOXYGEN_SINGLE
37void isdoxy9(void);
38
39// Not a Doxygen comment. NOT_DOXYGEN
40/// Doxygen comment. isdoxy10 IS_DOXYGEN_SINGLE
41void isdoxy10(void);
42
43/// Doxygen comment. isdoxy11 IS_DOXYGEN_SINGLE
44// Not a Doxygen comment. NOT_DOXYGEN
45void isdoxy11(void);
46
47/** Doxygen comment. isdoxy12 IS_DOXYGEN_SINGLE */
48/* Not a Doxygen comment. NOT_DOXYGEN */
49void isdoxy12(void);
50
51/// Doxygen comment. isdoxy13 IS_DOXYGEN_START
52/// Doxygen comment. IS_DOXYGEN_END
53void isdoxy13(void);
54
55/// Doxygen comment. isdoxy14 IS_DOXYGEN_START
56/// Blah-blah-blah.
57/// Doxygen comment. IS_DOXYGEN_END
58void isdoxy14(void);
59
60/// Doxygen comment. isdoxy15 IS_DOXYGEN_START
61/** Blah-blah-blah */
62/// Doxygen comment. IS_DOXYGEN_END
63void isdoxy15(void);
64
65/** Blah-blah-blah. isdoxy16 IS_DOXYGEN_START *//** Blah */
66/// Doxygen comment. IS_DOXYGEN_END
67void isdoxy16(void);
68
69/// isdoxy17 IS_DOXYGEN_START
70// Not a Doxygen comment, but still picked up.
71/// IS_DOXYGEN_END
72void isdoxy17(void);
73
74unsigned
75// NOT_DOXYGEN
76/// isdoxy18 IS_DOXYGEN_START
77// Not a Doxygen comment, but still picked up.
78/// IS_DOXYGEN_END
79// NOT_DOXYGEN
80int isdoxy18(void);
81
82//! It all starts here. isdoxy19 IS_DOXYGEN_START
83/*! It's a little odd to continue line this,
84 *
85 * but we need more multi-line comments. */
86/// This comment comes before my other comments
87/** This is a block comment that is associated with the function f. It
88 * runs for three lines. IS_DOXYGEN_END
89 */
90void isdoxy19(int, int);
91
92// NOT IN THE COMMENT NOT_DOXYGEN
93/// This is a BCPL comment. isdoxy20 IS_DOXYGEN_START
94/// It has only two lines.
95/** But there are other blocks that are part of the comment, too. IS_DOXYGEN_END */
96void isdoxy20(int);
97
Dmitri Gribenko9c006762012-07-06 23:27:33 +000098void notdoxy21(int); ///< This is a member comment. isdoxy21 IS_DOXYGEN_NOT_ATTACHED
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +000099
Dmitri Gribenko9c006762012-07-06 23:27:33 +0000100void notdoxy22(int); /*!< This is a member comment. isdoxy22 IS_DOXYGEN_NOT_ATTACHED */
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +0000101
Dmitri Gribenko9c006762012-07-06 23:27:33 +0000102void notdoxy23(int); /**< This is a member comment. isdoxy23 IS_DOXYGEN_NOT_ATTACHED */
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +0000103
104void notdoxy24(int); // NOT_DOXYGEN
105
106/// IS_DOXYGEN_SINGLE
107struct isdoxy25 {
108};
109
110struct test26 {
111 /// IS_DOXYGEN_SINGLE
112 int isdoxy26;
113};
114
115struct test27 {
116 int isdoxy27; ///< IS_DOXYGEN_SINGLE
117};
118
119struct notdoxy28 {
120}; ///< IS_DOXYGEN_NOT_ATTACHED
121
122/// IS_DOXYGEN_SINGLE
123enum isdoxy29 {
124};
125
126enum notdoxy30 {
127}; ///< IS_DOXYGEN_NOT_ATTACHED
128
129/// IS_DOXYGEN_SINGLE
130namespace isdoxy31 {
131};
132
133namespace notdoxy32 {
134}; ///< IS_DOXYGEN_NOT_ATTACHED
135
136class test33 {
137 ///< IS_DOXYGEN_NOT_ATTACHED
138 int isdoxy33; ///< isdoxy33 IS_DOXYGEN_SINGLE
139 int isdoxy34; ///< isdoxy34 IS_DOXYGEN_SINGLE
140
141 ///< IS_DOXYGEN_NOT_ATTACHED
142 int isdoxy35, ///< isdoxy35 IS_DOXYGEN_SINGLE
143 isdoxy36; ///< isdoxy36 IS_DOXYGEN_SINGLE
144
145 ///< IS_DOXYGEN_NOT_ATTACHED
146 int isdoxy37 ///< isdoxy37 IS_DOXYGEN_SINGLE
147 , isdoxy38 ///< isdoxy38 IS_DOXYGEN_SINGLE
148 , isdoxy39; ///< isdoxy39 IS_DOXYGEN_SINGLE
149};
150
151// Verified that Doxygen attaches these.
152
153/// isdoxy40 IS_DOXYGEN_SINGLE
154// NOT_DOXYGEN
155void isdoxy40(int);
156
157unsigned
158/// isdoxy41 IS_DOXYGEN_SINGLE
159// NOT_DOXYGEN
160int isdoxy41(int);
161
162class test42 {
163 int isdoxy42; /* NOT_DOXYGEN */ ///< isdoxy42 IS_DOXYGEN_SINGLE
164};
165
Dmitri Gribenko2d44d772012-06-26 20:39:18 +0000166/// IS_DOXYGEN_START
167/// It is fine to have a command at the end of comment.
168///\brief
169///
170/// Some malformed command.
171/* \*/
172/**
173 * \brief Aaa aaaaaaa aaaa.
174 * IS_DOXYGEN_END
175 */
176void isdoxy43(void);
177
178/// IS_DOXYGEN_START Aaa bbb
179/// ccc.
180///
181/// Ddd eee.
182/// Fff.
183///
184/// Ggg. IS_DOXYGEN_END
185void isdoxy44(void);
186
187/// IS_DOXYGEN_START Aaa bbb
188/// ccc.
189///
190/// \brief
191/// Ddd eee.
192/// Fff.
193///
194/// Ggg. IS_DOXYGEN_END
195void isdoxy45(void);
196
Dmitri Gribenko659a7122012-07-17 18:35:14 +0000197/// IS_DOXYGEN_START Aaa bbb
198/// ccc.
199///
200/// \short
201/// Ddd eee.
202/// Fff.
203///
204/// Ggg. IS_DOXYGEN_END
205void isdoxy46(void);
206
Dmitri Gribenko8bdb58a2012-06-27 23:43:37 +0000207/// IS_DOXYGEN_NOT_ATTACHED
208#define FOO
Dmitri Gribenko659a7122012-07-17 18:35:14 +0000209void notdoxy47(void);
Dmitri Gribenko8bdb58a2012-06-27 23:43:37 +0000210
Dmitri Gribenkof199b9c2012-06-28 00:01:41 +0000211/// IS_DOXYGEN_START Aaa bbb
212/// \param ccc
213/// \returns ddd IS_DOXYGEN_END
Dmitri Gribenko659a7122012-07-17 18:35:14 +0000214void isdoxy48(int);
Dmitri Gribenkof199b9c2012-06-28 00:01:41 +0000215
Dmitri Gribenko72021ff2012-07-20 17:01:34 +0000216/// \brief IS_DOXYGEN_START Aaa
217/// \returns bbb IS_DOXYGEN_END
218void isdoxy49(void);
219
220/// \param ccc IS_DOXYGEN_START
221/// \returns ddd IS_DOXYGEN_END
222void isdoxy50(int);
223
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000224/// Aaa.
225void comment_to_html_conversion_1();
226
227/// \brief Aaa.
228void comment_to_html_conversion_2();
229
230/// \short Aaa.
231void comment_to_html_conversion_3();
232
233/// Aaa.
234///
235/// \brief Bbb.
236void comment_to_html_conversion_4();
237
238/// Aaa.
239///
240/// \brief Bbb.
241///
242/// Ccc.
243void comment_to_html_conversion_5();
244
245/// \brief Aaa.
246/// \brief Bbb.
247void comment_to_html_conversion_6();
248
249/// Aaa.
250///
251/// \return Bbb.
252void comment_to_html_conversion_7();
253
254/// Aaa.
255///
256/// \returns Bbb.
257void comment_to_html_conversion_8();
258
Dmitri Gribenko2c6b00e2012-07-25 17:14:58 +0000259/// Aaa.
260///
261/// \result Bbb.
262void comment_to_html_conversion_9();
263
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000264/// \returns Aaa.
265/// \returns Bbb.
Dmitri Gribenko2c6b00e2012-07-25 17:14:58 +0000266void comment_to_html_conversion_10();
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000267
268/// Aaa.
269///
270/// Bbb.
271///
272/// \returns Ccc.
Dmitri Gribenko2c6b00e2012-07-25 17:14:58 +0000273void comment_to_html_conversion_11();
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000274
Dmitri Gribenko1f8c5292012-07-23 19:41:49 +0000275/// \param
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000276void comment_to_html_conversion_12(int x1);
277
Dmitri Gribenko2c6b00e2012-07-25 17:14:58 +0000278/// \param x1 Aaa.
Dmitri Gribenko1f8c5292012-07-23 19:41:49 +0000279void comment_to_html_conversion_13(int x1);
280
Dmitri Gribenko2c6b00e2012-07-25 17:14:58 +0000281/// \param zzz Aaa.
282void comment_to_html_conversion_14(int x1);
283
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000284/// \param x2 Bbb.
285/// \param x1 Aaa.
Dmitri Gribenko2c6b00e2012-07-25 17:14:58 +0000286void comment_to_html_conversion_15(int x1, int x2);
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000287
288/// \param x2 Bbb.
289/// \param zzz Aaa.
290/// \param x1 Aaa.
Dmitri Gribenko2c6b00e2012-07-25 17:14:58 +0000291void comment_to_html_conversion_16(int x1, int x2);
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000292
Dmitri Gribenko96b09862012-07-31 22:37:06 +0000293/// \tparam
294/// \param aaa Blah blah
295template<typename T>
296void comment_to_html_conversion_17(T aaa);
297
298/// \tparam T2 Bbb
299/// \tparam T1 Aaa
300template<typename T1, typename T2>
301void comment_to_html_conversion_18(T1 aaa, T2 bbb);
302
303/// \tparam T2 Bbb
304/// \tparam U Zzz
305/// \tparam V Ccc
306/// \tparam T1 Aaa
307template<typename T1, typename T2, int V>
308void comment_to_html_conversion_19(T1 aaa, T2 bbb);
309
310/// \tparam TTT Ddd
311/// \tparam C Ccc
312/// \tparam T Aaa
313/// \tparam TT Bbb
314template<template<template<typename T> class TT, class C> class TTT>
315void comment_to_html_conversion_20();
316
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000317/// \brief Aaa.
318///
319/// Bbb.
320///
321/// \param x2 Ddd.
322/// \param x1 Ccc.
323/// \returns Eee.
Dmitri Gribenko96b09862012-07-31 22:37:06 +0000324void comment_to_html_conversion_21(int x1, int x2);
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000325
326/// <br><a href="http://example.com/">Aaa</a>
Dmitri Gribenko96b09862012-07-31 22:37:06 +0000327void comment_to_html_conversion_22();
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000328
329/// \verbatim
330/// <a href="http://example.com/">Aaa</a>
331/// <a href='http://example.com/'>Aaa</a>
332/// \endverbatim
Dmitri Gribenko1f8c5292012-07-23 19:41:49 +0000333void comment_to_html_conversion_23();
334
Dmitri Gribenko96b09862012-07-31 22:37:06 +0000335/// \b Aaa
Dmitri Gribenko2c6b00e2012-07-25 17:14:58 +0000336void comment_to_html_conversion_24();
337
Dmitri Gribenko96b09862012-07-31 22:37:06 +0000338/// \c Aaa \p Bbb
Dmitri Gribenko477a9f52012-07-27 20:37:06 +0000339void comment_to_html_conversion_25();
340
Dmitri Gribenko96b09862012-07-31 22:37:06 +0000341/// \a Aaa \e Bbb \em Ccc
342void comment_to_html_conversion_26();
343
344/// \\ \@ \& \$ \# \< \> \% \" \. \::
345void comment_to_html_conversion_27();
346
347/// &amp; &lt; &gt; &quot;
348void comment_to_html_conversion_28();
349
350/// <em>0&lt;i</em>
351void comment_to_html_conversion_29();
352
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +0000353#endif
354
355// RUN: rm -rf %t
356// RUN: mkdir %t
357// RUN: %clang_cc1 -x c++ -emit-pch -o %t/out.pch %s
358// RUN: %clang_cc1 -x c++ -include-pch %t/out.pch -fsyntax-only %s
359
360// RUN: c-index-test -test-load-source all %s > %t/out.c-index-direct
361// RUN: c-index-test -test-load-tu %t/out.pch all > %t/out.c-index-pch
362
363// RUN: FileCheck %s -check-prefix=WRONG < %t/out.c-index-direct
364// RUN: FileCheck %s -check-prefix=WRONG < %t/out.c-index-pch
365
366// Declarations without Doxygen comments should not pick up some Doxygen comments.
367// WRONG-NOT: notdoxy{{.*}}Comment=
368// WRONG-NOT: test{{.*}}Comment=
369
370// Non-Doxygen comments should not be attached to anything.
371// WRONG-NOT: NOT_DOXYGEN
372
373// Some Doxygen comments are not attached to anything.
374// WRONG-NOT: IS_DOXYGEN_NOT_ATTACHED
375
376// Ensure we don't pick up extra comments.
Dmitri Gribenko2d44d772012-06-26 20:39:18 +0000377// WRONG-NOT: IS_DOXYGEN_START{{.*}}IS_DOXYGEN_START{{.*}}BriefComment=
378// WRONG-NOT: IS_DOXYGEN_END{{.*}}IS_DOXYGEN_END{{.*}}BriefComment=
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +0000379
380// RUN: FileCheck %s < %t/out.c-index-direct
381// RUN: FileCheck %s < %t/out.c-index-pch
382
383// CHECK: annotate-comments.cpp:16:6: FunctionDecl=isdoxy4:{{.*}} isdoxy4 IS_DOXYGEN_SINGLE
384// CHECK: annotate-comments.cpp:20:6: FunctionDecl=isdoxy5:{{.*}} isdoxy5 IS_DOXYGEN_SINGLE
385// CHECK: annotate-comments.cpp:25:6: FunctionDecl=isdoxy6:{{.*}} isdoxy6 IS_DOXYGEN_SINGLE
386// CHECK: annotate-comments.cpp:31:6: FunctionDecl=isdoxy7:{{.*}} isdoxy7 IS_DOXYGEN_SINGLE
387// CHECK: annotate-comments.cpp:34:6: FunctionDecl=isdoxy8:{{.*}} isdoxy8 IS_DOXYGEN_SINGLE
388// CHECK: annotate-comments.cpp:37:6: FunctionDecl=isdoxy9:{{.*}} isdoxy9 IS_DOXYGEN_SINGLE
389// CHECK: annotate-comments.cpp:41:6: FunctionDecl=isdoxy10:{{.*}} isdoxy10 IS_DOXYGEN_SINGLE
390// CHECK: annotate-comments.cpp:53:6: FunctionDecl=isdoxy13:{{.*}} isdoxy13 IS_DOXYGEN_START{{.*}} IS_DOXYGEN_END
391// CHECK: annotate-comments.cpp:58:6: FunctionDecl=isdoxy14:{{.*}} isdoxy14 IS_DOXYGEN_START{{.*}} IS_DOXYGEN_END
392// CHECK: annotate-comments.cpp:63:6: FunctionDecl=isdoxy15:{{.*}} isdoxy15 IS_DOXYGEN_START{{.*}} IS_DOXYGEN_END
393// CHECK: annotate-comments.cpp:67:6: FunctionDecl=isdoxy16:{{.*}} isdoxy16 IS_DOXYGEN_START{{.*}} IS_DOXYGEN_END
394// CHECK: annotate-comments.cpp:72:6: FunctionDecl=isdoxy17:{{.*}} isdoxy17 IS_DOXYGEN_START{{.*}} IS_DOXYGEN_END
395// CHECK: annotate-comments.cpp:80:5: FunctionDecl=isdoxy18:{{.*}} isdoxy18 IS_DOXYGEN_START{{.*}} IS_DOXYGEN_END
396// CHECK: annotate-comments.cpp:90:6: FunctionDecl=isdoxy19:{{.*}} isdoxy19 IS_DOXYGEN_START{{.*}} IS_DOXYGEN_END
397// CHECK: annotate-comments.cpp:96:6: FunctionDecl=isdoxy20:{{.*}} isdoxy20 IS_DOXYGEN_START{{.*}} IS_DOXYGEN_END
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +0000398// CHECK: annotate-comments.cpp:107:8: StructDecl=isdoxy25:{{.*}} IS_DOXYGEN_SINGLE
399// CHECK: annotate-comments.cpp:112:7: FieldDecl=isdoxy26:{{.*}} IS_DOXYGEN_SINGLE
400// CHECK: annotate-comments.cpp:116:7: FieldDecl=isdoxy27:{{.*}} IS_DOXYGEN_SINGLE
401// CHECK: annotate-comments.cpp:123:6: EnumDecl=isdoxy29:{{.*}} IS_DOXYGEN_SINGLE
402// CHECK: annotate-comments.cpp:130:11: Namespace=isdoxy31:{{.*}} IS_DOXYGEN_SINGLE
403// CHECK: annotate-comments.cpp:138:7: FieldDecl=isdoxy33:{{.*}} isdoxy33 IS_DOXYGEN_SINGLE
404// CHECK: annotate-comments.cpp:139:7: FieldDecl=isdoxy34:{{.*}} isdoxy34 IS_DOXYGEN_SINGLE
405// CHECK: annotate-comments.cpp:142:7: FieldDecl=isdoxy35:{{.*}} isdoxy35 IS_DOXYGEN_SINGLE
406// CHECK: annotate-comments.cpp:143:7: FieldDecl=isdoxy36:{{.*}} isdoxy36 IS_DOXYGEN_SINGLE
407// CHECK: annotate-comments.cpp:146:7: FieldDecl=isdoxy37:{{.*}} isdoxy37 IS_DOXYGEN_SINGLE
408// CHECK: annotate-comments.cpp:147:7: FieldDecl=isdoxy38:{{.*}} isdoxy38 IS_DOXYGEN_SINGLE
409// CHECK: annotate-comments.cpp:148:7: FieldDecl=isdoxy39:{{.*}} isdoxy39 IS_DOXYGEN_SINGLE
410// CHECK: annotate-comments.cpp:155:6: FunctionDecl=isdoxy40:{{.*}} isdoxy40 IS_DOXYGEN_SINGLE
411// CHECK: annotate-comments.cpp:160:5: FunctionDecl=isdoxy41:{{.*}} isdoxy41 IS_DOXYGEN_SINGLE
412// CHECK: annotate-comments.cpp:163:7: FieldDecl=isdoxy42:{{.*}} isdoxy42 IS_DOXYGEN_SINGLE
Dmitri Gribenko2d44d772012-06-26 20:39:18 +0000413// CHECK: annotate-comments.cpp:176:6: FunctionDecl=isdoxy43:{{.*}} IS_DOXYGEN_START{{.*}} IS_DOXYGEN_END
414
Dmitri Gribenkod558b522012-06-28 01:38:21 +0000415// CHECK: annotate-comments.cpp:185:6: FunctionDecl=isdoxy44:{{.*}} BriefComment=[IS_DOXYGEN_START Aaa bbb ccc.]
416// CHECK: annotate-comments.cpp:195:6: FunctionDecl=isdoxy45:{{.*}} BriefComment=[Ddd eee. Fff.]
Dmitri Gribenko659a7122012-07-17 18:35:14 +0000417// CHECK: annotate-comments.cpp:205:6: FunctionDecl=isdoxy46:{{.*}} BriefComment=[Ddd eee. Fff.]
418// CHECK: annotate-comments.cpp:214:6: FunctionDecl=isdoxy48:{{.*}} BriefComment=[IS_DOXYGEN_START Aaa bbb]
Dmitri Gribenko72021ff2012-07-20 17:01:34 +0000419// CHECK: annotate-comments.cpp:218:6: FunctionDecl=isdoxy49:{{.*}} BriefComment=[IS_DOXYGEN_START Aaa]
420// CHECK: annotate-comments.cpp:222:6: FunctionDecl=isdoxy50:{{.*}} BriefComment=[Returns ddd IS_DOXYGEN_END]
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +0000421
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000422// CHECK: annotate-comments.cpp:225:6: FunctionDecl=comment_to_html_conversion_1:{{.*}} FullCommentAsHTML=[<p class="para-brief"> Aaa.</p>]
423// CHECK-NEXT: CommentAST=[
424// CHECK-NEXT: (CXComment_FullComment
425// CHECK-NEXT: (CXComment_Paragraph
426// CHECK-NEXT: (CXComment_Text Text=[ Aaa.])))]
427// CHECK: annotate-comments.cpp:228:6: FunctionDecl=comment_to_html_conversion_2:{{.*}} FullCommentAsHTML=[<p class="para-brief"> Aaa.</p>]
428// CHECK-NEXT: CommentAST=[
429// CHECK-NEXT: (CXComment_FullComment
430// CHECK-NEXT: (CXComment_Paragraph IsWhitespace
431// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace))
432// CHECK-NEXT: (CXComment_BlockCommand CommandName=[brief]
433// CHECK-NEXT: (CXComment_Paragraph
434// CHECK-NEXT: (CXComment_Text Text=[ Aaa.]))))]
435// CHECK: annotate-comments.cpp:231:6: FunctionDecl=comment_to_html_conversion_3:{{.*}} FullCommentAsHTML=[<p class="para-brief"> Aaa.</p>]
436// CHECK-NEXT: CommentAST=[
437// CHECK-NEXT: (CXComment_FullComment
438// CHECK-NEXT: (CXComment_Paragraph IsWhitespace
439// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace))
440// CHECK-NEXT: (CXComment_BlockCommand CommandName=[short]
441// CHECK-NEXT: (CXComment_Paragraph
442// CHECK-NEXT: (CXComment_Text Text=[ Aaa.]))))]
443// CHECK: annotate-comments.cpp:236:6: FunctionDecl=comment_to_html_conversion_4:{{.*}} FullCommentAsHTML=[<p class="para-brief"> Bbb.</p><p> Aaa.</p>]
444// CHECK-NEXT: CommentAST=[
445// CHECK-NEXT: (CXComment_FullComment
446// CHECK-NEXT: (CXComment_Paragraph
447// CHECK-NEXT: (CXComment_Text Text=[ Aaa.]))
448// CHECK-NEXT: (CXComment_Paragraph IsWhitespace
449// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace))
450// CHECK-NEXT: (CXComment_BlockCommand CommandName=[brief]
451// CHECK-NEXT: (CXComment_Paragraph
452// CHECK-NEXT: (CXComment_Text Text=[ Bbb.]))))]
453// CHECK: annotate-comments.cpp:243:6: FunctionDecl=comment_to_html_conversion_5:{{.*}} FullCommentAsHTML=[<p class="para-brief"> Bbb.</p><p> Aaa.</p><p> Ccc.</p>]
454// CHECK-NEXT: CommentAST=[
455// CHECK-NEXT: (CXComment_FullComment
456// CHECK-NEXT: (CXComment_Paragraph
457// CHECK-NEXT: (CXComment_Text Text=[ Aaa.]))
458// CHECK-NEXT: (CXComment_Paragraph IsWhitespace
459// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace))
460// CHECK-NEXT: (CXComment_BlockCommand CommandName=[brief]
461// CHECK-NEXT: (CXComment_Paragraph
462// CHECK-NEXT: (CXComment_Text Text=[ Bbb.])))
463// CHECK-NEXT: (CXComment_Paragraph
464// CHECK-NEXT: (CXComment_Text Text=[ Ccc.])))]
465// CHECK: annotate-comments.cpp:247:6: FunctionDecl=comment_to_html_conversion_6:{{.*}} FullCommentAsHTML=[<p class="para-brief"> Aaa. </p><p class="para-brief"> Bbb.</p>]
466// CHECK-NEXT: CommentAST=[
467// CHECK-NEXT: (CXComment_FullComment
468// CHECK-NEXT: (CXComment_Paragraph IsWhitespace
469// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace))
470// CHECK-NEXT: (CXComment_BlockCommand CommandName=[brief]
471// CHECK-NEXT: (CXComment_Paragraph
472// CHECK-NEXT: (CXComment_Text Text=[ Aaa.] HasTrailingNewline)
473// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)))
474// CHECK-NEXT: (CXComment_BlockCommand CommandName=[brief]
475// CHECK-NEXT: (CXComment_Paragraph
476// CHECK-NEXT: (CXComment_Text Text=[ Bbb.]))))]
477// CHECK: annotate-comments.cpp:252: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>]
478// CHECK-NEXT: CommentAST=[
479// CHECK-NEXT: (CXComment_FullComment
480// CHECK-NEXT: (CXComment_Paragraph
481// CHECK-NEXT: (CXComment_Text Text=[ Aaa.]))
482// CHECK-NEXT: (CXComment_Paragraph IsWhitespace
483// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace))
484// CHECK-NEXT: (CXComment_BlockCommand CommandName=[return]
485// CHECK-NEXT: (CXComment_Paragraph
486// CHECK-NEXT: (CXComment_Text Text=[ Bbb.]))))]
487// CHECK: annotate-comments.cpp:257: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>]
488// CHECK-NEXT: CommentAST=[
489// CHECK-NEXT: (CXComment_FullComment
490// CHECK-NEXT: (CXComment_Paragraph
491// CHECK-NEXT: (CXComment_Text Text=[ Aaa.]))
492// CHECK-NEXT: (CXComment_Paragraph IsWhitespace
493// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace))
494// CHECK-NEXT: (CXComment_BlockCommand CommandName=[returns]
495// CHECK-NEXT: (CXComment_Paragraph
496// CHECK-NEXT: (CXComment_Text Text=[ Bbb.]))))]
Dmitri Gribenko2c6b00e2012-07-25 17:14:58 +0000497// CHECK: annotate-comments.cpp:262: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>]
498// CHECK-NEXT: CommentAST=[
499// CHECK-NEXT: (CXComment_FullComment
500// CHECK-NEXT: (CXComment_Paragraph
501// CHECK-NEXT: (CXComment_Text Text=[ Aaa.]))
502// CHECK-NEXT: (CXComment_Paragraph IsWhitespace
503// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace))
504// CHECK-NEXT: (CXComment_BlockCommand CommandName=[result]
505// CHECK-NEXT: (CXComment_Paragraph
506// CHECK-NEXT: (CXComment_Text Text=[ Bbb.]))))]
507// CHECK: annotate-comments.cpp:266: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>]
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000508// CHECK-NEXT: CommentAST=[
509// CHECK-NEXT: (CXComment_FullComment
510// CHECK-NEXT: (CXComment_Paragraph IsWhitespace
511// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace))
512// CHECK-NEXT: (CXComment_BlockCommand CommandName=[returns]
513// CHECK-NEXT: (CXComment_Paragraph
514// CHECK-NEXT: (CXComment_Text Text=[ Aaa.] HasTrailingNewline)
515// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)))
516// CHECK-NEXT: (CXComment_BlockCommand CommandName=[returns]
517// CHECK-NEXT: (CXComment_Paragraph
518// CHECK-NEXT: (CXComment_Text Text=[ Bbb.]))))]
Dmitri Gribenko2c6b00e2012-07-25 17:14:58 +0000519// CHECK: annotate-comments.cpp:273: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>]
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000520// CHECK-NEXT: CommentAST=[
521// CHECK-NEXT: (CXComment_FullComment
522// CHECK-NEXT: (CXComment_Paragraph
523// CHECK-NEXT: (CXComment_Text Text=[ Aaa.]))
524// CHECK-NEXT: (CXComment_Paragraph
525// CHECK-NEXT: (CXComment_Text Text=[ Bbb.]))
526// CHECK-NEXT: (CXComment_Paragraph IsWhitespace
527// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace))
528// CHECK-NEXT: (CXComment_BlockCommand CommandName=[returns]
529// CHECK-NEXT: (CXComment_Paragraph
530// CHECK-NEXT: (CXComment_Text Text=[ Ccc.]))))]
Dmitri Gribenko2c6b00e2012-07-25 17:14:58 +0000531// CHECK: annotate-comments.cpp:276:6: FunctionDecl=comment_to_html_conversion_12:{{.*}} FullCommentAsHTML=[]
Dmitri Gribenko1f8c5292012-07-23 19:41:49 +0000532// CHECK-NEXT: CommentAST=[
533// CHECK-NEXT: (CXComment_FullComment
534// CHECK-NEXT: (CXComment_Paragraph IsWhitespace
535// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace))
536// CHECK-NEXT: (CXComment_ParamCommand in implicitly ParamName=[] ParamIndex=Invalid
537// CHECK-NEXT: (CXComment_Paragraph IsWhitespace)))]
Dmitri Gribenko2c6b00e2012-07-25 17:14:58 +0000538// CHECK: annotate-comments.cpp:279: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>]
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000539// CHECK-NEXT: CommentAST=[
540// CHECK-NEXT: (CXComment_FullComment
541// CHECK-NEXT: (CXComment_Paragraph IsWhitespace
542// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace))
543// CHECK-NEXT: (CXComment_ParamCommand in implicitly ParamName=[x1] ParamIndex=0
544// CHECK-NEXT: (CXComment_Paragraph
545// CHECK-NEXT: (CXComment_Text Text=[ Aaa.]))))]
Dmitri Gribenko2c6b00e2012-07-25 17:14:58 +0000546// CHECK: annotate-comments.cpp:282: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>]
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000547// CHECK-NEXT: CommentAST=[
548// CHECK-NEXT: (CXComment_FullComment
549// CHECK-NEXT: (CXComment_Paragraph IsWhitespace
550// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace))
551// CHECK-NEXT: (CXComment_ParamCommand in implicitly ParamName=[zzz] ParamIndex=Invalid
552// CHECK-NEXT: (CXComment_Paragraph
553// CHECK-NEXT: (CXComment_Text Text=[ Aaa.]))))]
Dmitri Gribenko2c6b00e2012-07-25 17:14:58 +0000554// CHECK: annotate-comments.cpp:286: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>]
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000555// CHECK-NEXT: CommentAST=[
556// CHECK-NEXT: (CXComment_FullComment
557// CHECK-NEXT: (CXComment_Paragraph IsWhitespace
558// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace))
559// CHECK-NEXT: (CXComment_ParamCommand in implicitly ParamName=[x2] ParamIndex=1
560// CHECK-NEXT: (CXComment_Paragraph
561// CHECK-NEXT: (CXComment_Text Text=[ Bbb.] HasTrailingNewline)
562// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)))
563// CHECK-NEXT: (CXComment_ParamCommand in implicitly ParamName=[x1] ParamIndex=0
564// CHECK-NEXT: (CXComment_Paragraph
565// CHECK-NEXT: (CXComment_Text Text=[ Aaa.]))))]
Dmitri Gribenko2c6b00e2012-07-25 17:14:58 +0000566// CHECK: annotate-comments.cpp:291: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>]
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000567// CHECK-NEXT: CommentAST=[
568// CHECK-NEXT: (CXComment_FullComment
569// CHECK-NEXT: (CXComment_Paragraph IsWhitespace
570// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace))
571// CHECK-NEXT: (CXComment_ParamCommand in implicitly ParamName=[x2] ParamIndex=1
572// CHECK-NEXT: (CXComment_Paragraph
573// CHECK-NEXT: (CXComment_Text Text=[ Bbb.] HasTrailingNewline)
574// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)))
575// CHECK-NEXT: (CXComment_ParamCommand in implicitly ParamName=[zzz] ParamIndex=Invalid
576// CHECK-NEXT: (CXComment_Paragraph
577// CHECK-NEXT: (CXComment_Text Text=[ Aaa.] HasTrailingNewline)
578// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)))
579// CHECK-NEXT: (CXComment_ParamCommand in implicitly ParamName=[x1] ParamIndex=0
580// CHECK-NEXT: (CXComment_Paragraph
581// CHECK-NEXT: (CXComment_Text Text=[ Aaa.]))))]
Dmitri Gribenko96b09862012-07-31 22:37:06 +0000582// CHECK: annotate-comments.cpp:296: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>]
583// CHECK-NEXT: CommentAST=[
584// CHECK-NEXT: (CXComment_FullComment
585// CHECK-NEXT: (CXComment_Paragraph IsWhitespace
586// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace))
587// CHECK-NEXT: (CXComment_TParamCommand ParamName=[] ParamPosition=Invalid
588// CHECK-NEXT: (CXComment_Paragraph IsWhitespace
589// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)))
590// CHECK-NEXT: (CXComment_ParamCommand in implicitly ParamName=[aaa] ParamIndex=0
591// CHECK-NEXT: (CXComment_Paragraph
592// CHECK-NEXT: (CXComment_Text Text=[ Blah blah]))))]
593// CHECK: annotate-comments.cpp:301:6: FunctionTemplate=comment_to_html_conversion_18:{{.*}} FullCommentAsHTML=[<dl><dt class="taram-name-index-0">T1</dt><dd class="tparam-descr-index-0"> Aaa</dd><dt class="taram-name-index-1">T2</dt><dd class="tparam-descr-index-1"> Bbb </dd></dl>]
594// CHECK-NEXT: CommentAST=[
595// CHECK-NEXT: (CXComment_FullComment
596// CHECK-NEXT: (CXComment_Paragraph IsWhitespace
597// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace))
598// CHECK-NEXT: (CXComment_TParamCommand ParamName=[T2] ParamPosition={1}
599// CHECK-NEXT: (CXComment_Paragraph
600// CHECK-NEXT: (CXComment_Text Text=[ Bbb] HasTrailingNewline)
601// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)))
602// CHECK-NEXT: (CXComment_TParamCommand ParamName=[T1] ParamPosition={0}
603// CHECK-NEXT: (CXComment_Paragraph
604// CHECK-NEXT: (CXComment_Text Text=[ Aaa]))))]
605// CHECK: annotate-comments.cpp:308:6: FunctionTemplate=comment_to_html_conversion_19:{{.*}} FullCommentAsHTML=[<dl><dt class="taram-name-index-0">T1</dt><dd class="tparam-descr-index-0"> Aaa</dd><dt class="taram-name-index-1">T2</dt><dd class="tparam-descr-index-1"> Bbb </dd><dt class="taram-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>]
606// CHECK-NEXT: CommentAST=[
607// CHECK-NEXT: (CXComment_FullComment
608// CHECK-NEXT: (CXComment_Paragraph IsWhitespace
609// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace))
610// CHECK-NEXT: (CXComment_TParamCommand ParamName=[T2] ParamPosition={1}
611// CHECK-NEXT: (CXComment_Paragraph
612// CHECK-NEXT: (CXComment_Text Text=[ Bbb] HasTrailingNewline)
613// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)))
614// CHECK-NEXT: (CXComment_TParamCommand ParamName=[U] ParamPosition=Invalid
615// CHECK-NEXT: (CXComment_Paragraph
616// CHECK-NEXT: (CXComment_Text Text=[ Zzz] HasTrailingNewline)
617// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)))
618// CHECK-NEXT: (CXComment_TParamCommand ParamName=[V] ParamPosition={2}
619// CHECK-NEXT: (CXComment_Paragraph
620// CHECK-NEXT: (CXComment_Text Text=[ Ccc] HasTrailingNewline)
621// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)))
622// CHECK-NEXT: (CXComment_TParamCommand ParamName=[T1] ParamPosition={0}
623// CHECK-NEXT: (CXComment_Paragraph
624// CHECK-NEXT: (CXComment_Text Text=[ Aaa]))))]
625// CHECK: annotate-comments.cpp:315:6: FunctionTemplate=comment_to_html_conversion_20:{{.*}} FullCommentAsHTML=[<dl><dt class="taram-name-index-0">TTT</dt><dd class="tparam-descr-index-0"> Ddd </dd><dt class="taram-name-index-other">C</dt><dd class="tparam-descr-index-other"> Ccc </dd><dt class="taram-name-index-other">T</dt><dd class="tparam-descr-index-other"> Aaa </dd><dt class="taram-name-index-other">TT</dt><dd class="tparam-descr-index-other"> Bbb</dd></dl>]
626// CHECK-NEXT: CommentAST=[
627// CHECK-NEXT: (CXComment_FullComment
628// CHECK-NEXT: (CXComment_Paragraph IsWhitespace
629// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace))
630// CHECK-NEXT: (CXComment_TParamCommand ParamName=[TTT] ParamPosition={0}
631// CHECK-NEXT: (CXComment_Paragraph
632// CHECK-NEXT: (CXComment_Text Text=[ Ddd] HasTrailingNewline)
633// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)))
634// CHECK-NEXT: (CXComment_TParamCommand ParamName=[C] ParamPosition={0, 1}
635// CHECK-NEXT: (CXComment_Paragraph
636// CHECK-NEXT: (CXComment_Text Text=[ Ccc] HasTrailingNewline)
637// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)))
638// CHECK-NEXT: (CXComment_TParamCommand ParamName=[T] ParamPosition={0, 0, 0}
639// CHECK-NEXT: (CXComment_Paragraph
640// CHECK-NEXT: (CXComment_Text Text=[ Aaa] HasTrailingNewline)
641// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)))
642// CHECK-NEXT: (CXComment_TParamCommand ParamName=[TT] ParamPosition={0, 0}
643// CHECK-NEXT: (CXComment_Paragraph
644// CHECK-NEXT: (CXComment_Text Text=[ Bbb]))))]
645// CHECK: annotate-comments.cpp:324:6: FunctionDecl=comment_to_html_conversion_21:{{.*}} 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>]
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000646// CHECK-NEXT: CommentAST=[
647// CHECK-NEXT: (CXComment_FullComment
648// CHECK-NEXT: (CXComment_Paragraph IsWhitespace
649// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace))
650// CHECK-NEXT: (CXComment_BlockCommand CommandName=[brief]
651// CHECK-NEXT: (CXComment_Paragraph
652// CHECK-NEXT: (CXComment_Text Text=[ Aaa.])))
653// CHECK-NEXT: (CXComment_Paragraph
654// CHECK-NEXT: (CXComment_Text Text=[ Bbb.]))
655// CHECK-NEXT: (CXComment_Paragraph IsWhitespace
656// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace))
657// CHECK-NEXT: (CXComment_ParamCommand in implicitly ParamName=[x2] ParamIndex=1
658// CHECK-NEXT: (CXComment_Paragraph
659// CHECK-NEXT: (CXComment_Text Text=[ Ddd.] HasTrailingNewline)
660// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)))
661// CHECK-NEXT: (CXComment_ParamCommand in implicitly ParamName=[x1] ParamIndex=0
662// CHECK-NEXT: (CXComment_Paragraph
663// CHECK-NEXT: (CXComment_Text Text=[ Ccc.] HasTrailingNewline)
664// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)))
665// CHECK-NEXT: (CXComment_BlockCommand CommandName=[returns]
666// CHECK-NEXT: (CXComment_Paragraph
667// CHECK-NEXT: (CXComment_Text Text=[ Eee.]))))]
Dmitri Gribenko96b09862012-07-31 22:37:06 +0000668// CHECK: annotate-comments.cpp:327:6: FunctionDecl=comment_to_html_conversion_22:{{.*}} FullCommentAsHTML=[<p class="para-brief"> <br><a href="http://example.com/">Aaa</a></p>]
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000669// CHECK-NEXT: CommentAST=[
670// CHECK-NEXT: (CXComment_FullComment
671// CHECK-NEXT: (CXComment_Paragraph
672// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)
673// CHECK-NEXT: (CXComment_HTMLStartTag Name=[br])
674// CHECK-NEXT: (CXComment_HTMLStartTag Name=[a] Attrs: href=http://example.com/)
675// CHECK-NEXT: (CXComment_Text Text=[Aaa])
676// CHECK-NEXT: (CXComment_HTMLEndTag Name=[a])))]
Dmitri Gribenko96b09862012-07-31 22:37:06 +0000677// CHECK: annotate-comments.cpp:333:6: FunctionDecl=comment_to_html_conversion_23:{{.*}} 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>]
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000678// CHECK-NEXT: CommentAST=[
679// CHECK-NEXT: (CXComment_FullComment
680// CHECK-NEXT: (CXComment_Paragraph IsWhitespace
681// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace))
682// CHECK-NEXT: (CXComment_VerbatimBlockCommand CommandName=[verbatim]
683// CHECK-NEXT: (CXComment_VerbatimBlockLine Text=[ <a href="http://example.com/">Aaa</a>])
684// CHECK-NEXT: (CXComment_VerbatimBlockLine Text=[ <a href='http://example.com/'>Aaa</a>])))]
Dmitri Gribenko96b09862012-07-31 22:37:06 +0000685// CHECK: annotate-comments.cpp:336:6: FunctionDecl=comment_to_html_conversion_24:{{.*}} FullCommentAsHTML=[<p class="para-brief"> <b>Aaa</b></p>]
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000686// CHECK-NEXT: CommentAST=[
687// CHECK-NEXT: (CXComment_FullComment
688// CHECK-NEXT: (CXComment_Paragraph
689// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)
Dmitri Gribenko2d66a502012-07-23 16:43:01 +0000690// CHECK-NEXT: (CXComment_InlineCommand CommandName=[b] RenderBold Arg[0]=Aaa)))]
Dmitri Gribenko96b09862012-07-31 22:37:06 +0000691// CHECK: annotate-comments.cpp:339:6: FunctionDecl=comment_to_html_conversion_25:{{.*}} FullCommentAsHTML=[<p class="para-brief"> <tt>Aaa</tt> <tt>Bbb</tt></p>]
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000692// CHECK-NEXT: CommentAST=[
693// CHECK-NEXT: (CXComment_FullComment
694// CHECK-NEXT: (CXComment_Paragraph
695// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)
Dmitri Gribenko2d66a502012-07-23 16:43:01 +0000696// CHECK-NEXT: (CXComment_InlineCommand CommandName=[c] RenderMonospaced Arg[0]=Aaa)
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000697// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)
Dmitri Gribenko2d66a502012-07-23 16:43:01 +0000698// CHECK-NEXT: (CXComment_InlineCommand CommandName=[p] RenderMonospaced Arg[0]=Bbb)))]
Dmitri Gribenko96b09862012-07-31 22:37:06 +0000699// CHECK: annotate-comments.cpp:342:6: FunctionDecl=comment_to_html_conversion_26:{{.*}} FullCommentAsHTML=[<p class="para-brief"> <em>Aaa</em> <em>Bbb</em> <em>Ccc</em></p>]
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000700// CHECK-NEXT: CommentAST=[
701// CHECK-NEXT: (CXComment_FullComment
702// CHECK-NEXT: (CXComment_Paragraph
703// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)
Dmitri Gribenko2d66a502012-07-23 16:43:01 +0000704// CHECK-NEXT: (CXComment_InlineCommand CommandName=[a] RenderEmphasized Arg[0]=Aaa)
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000705// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)
Dmitri Gribenko2d66a502012-07-23 16:43:01 +0000706// CHECK-NEXT: (CXComment_InlineCommand CommandName=[e] RenderEmphasized Arg[0]=Bbb)
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000707// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)
Dmitri Gribenko2d66a502012-07-23 16:43:01 +0000708// CHECK-NEXT: (CXComment_InlineCommand CommandName=[em] RenderEmphasized Arg[0]=Ccc)))]
Dmitri Gribenko96b09862012-07-31 22:37:06 +0000709// CHECK: annotate-comments.cpp:345:6: FunctionDecl=comment_to_html_conversion_27:{{.*}} FullCommentAsHTML=[<p class="para-brief"> \ @ &amp; $ # &lt; &gt; % &quot; . ::</p>]
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000710// CHECK-NEXT: CommentAST=[
711// CHECK-NEXT: (CXComment_FullComment
712// CHECK-NEXT: (CXComment_Paragraph
713// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)
714// CHECK-NEXT: (CXComment_Text Text=[\])
715// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)
716// CHECK-NEXT: (CXComment_Text Text=[@])
717// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)
718// CHECK-NEXT: (CXComment_Text Text=[&])
719// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)
720// CHECK-NEXT: (CXComment_Text Text=[$])
721// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)
722// CHECK-NEXT: (CXComment_Text Text=[#])
723// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)
724// CHECK-NEXT: (CXComment_Text Text=[<])
725// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)
726// CHECK-NEXT: (CXComment_Text Text=[>])
727// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)
728// CHECK-NEXT: (CXComment_Text Text=[%])
729// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)
730// CHECK-NEXT: (CXComment_Text Text=["])
731// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)
732// CHECK-NEXT: (CXComment_Text Text=[.])
733// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)
734// CHECK-NEXT: (CXComment_Text Text=[::])))]
Dmitri Gribenko96b09862012-07-31 22:37:06 +0000735// CHECK: annotate-comments.cpp:348:6: FunctionDecl=comment_to_html_conversion_28:{{.*}} FullCommentAsHTML=[<p class="para-brief"> &amp; &lt; &gt; &quot;</p>]
Dmitri Gribenko477a9f52012-07-27 20:37:06 +0000736// CHECK-NEXT: CommentAST=[
737// CHECK-NEXT: (CXComment_FullComment
738// CHECK-NEXT: (CXComment_Paragraph
739// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)
740// CHECK-NEXT: (CXComment_Text Text=[&])
741// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)
742// CHECK-NEXT: (CXComment_Text Text=[<])
743// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)
744// CHECK-NEXT: (CXComment_Text Text=[>])
745// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)
746// CHECK-NEXT: (CXComment_Text Text=["])))]
Dmitri Gribenko96b09862012-07-31 22:37:06 +0000747// CHECK: annotate-comments.cpp:351:6: FunctionDecl=comment_to_html_conversion_29:{{.*}} FullCommentAsHTML=[<p class="para-brief"> <em>0&lt;i</em></p>]
Dmitri Gribenko477a9f52012-07-27 20:37:06 +0000748// CHECK-NEXT: CommentAST=[
749// CHECK-NEXT: (CXComment_FullComment
750// CHECK-NEXT: (CXComment_Paragraph
751// CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)
752// CHECK-NEXT: (CXComment_HTMLStartTag Name=[em])
753// CHECK-NEXT: (CXComment_Text Text=[0])
754// CHECK-NEXT: (CXComment_Text Text=[<])
755// CHECK-NEXT: (CXComment_Text Text=[i])
756// CHECK-NEXT: (CXComment_HTMLEndTag Name=[em])))]
Dmitri Gribenkoae99b752012-07-20 21:34:34 +0000757