Dmitri Gribenko | aa0cd85 | 2012-06-20 00:34:58 +0000 | [diff] [blame] | 1 | // 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 |
| 7 | void notdoxy1(void); |
| 8 | |
| 9 | /* Not a Doxygen comment. NOT_DOXYGEN */ |
| 10 | void notdoxy2(void); |
| 11 | |
| 12 | /*/ Not a Doxygen comment. NOT_DOXYGEN */ |
| 13 | void notdoxy3(void); |
| 14 | |
| 15 | /** Doxygen comment. isdoxy4 IS_DOXYGEN_SINGLE */ |
| 16 | void isdoxy4(void); |
| 17 | |
| 18 | /** |
| 19 | * Doxygen comment. isdoxy5 IS_DOXYGEN_SINGLE */ |
| 20 | void isdoxy5(void); |
| 21 | |
| 22 | /** |
| 23 | * Doxygen comment. |
| 24 | * isdoxy6 IS_DOXYGEN_SINGLE */ |
| 25 | void isdoxy6(void); |
| 26 | |
| 27 | /** |
| 28 | * Doxygen comment. |
| 29 | * isdoxy7 IS_DOXYGEN_SINGLE |
| 30 | */ |
| 31 | void isdoxy7(void); |
| 32 | |
| 33 | /*! Doxygen comment. isdoxy8 IS_DOXYGEN_SINGLE */ |
| 34 | void isdoxy8(void); |
| 35 | |
| 36 | /// Doxygen comment. isdoxy9 IS_DOXYGEN_SINGLE |
| 37 | void isdoxy9(void); |
| 38 | |
| 39 | // Not a Doxygen comment. NOT_DOXYGEN |
| 40 | /// Doxygen comment. isdoxy10 IS_DOXYGEN_SINGLE |
| 41 | void isdoxy10(void); |
| 42 | |
| 43 | /// Doxygen comment. isdoxy11 IS_DOXYGEN_SINGLE |
| 44 | // Not a Doxygen comment. NOT_DOXYGEN |
| 45 | void isdoxy11(void); |
| 46 | |
| 47 | /** Doxygen comment. isdoxy12 IS_DOXYGEN_SINGLE */ |
| 48 | /* Not a Doxygen comment. NOT_DOXYGEN */ |
| 49 | void isdoxy12(void); |
| 50 | |
| 51 | /// Doxygen comment. isdoxy13 IS_DOXYGEN_START |
| 52 | /// Doxygen comment. IS_DOXYGEN_END |
| 53 | void isdoxy13(void); |
| 54 | |
| 55 | /// Doxygen comment. isdoxy14 IS_DOXYGEN_START |
| 56 | /// Blah-blah-blah. |
| 57 | /// Doxygen comment. IS_DOXYGEN_END |
| 58 | void isdoxy14(void); |
| 59 | |
| 60 | /// Doxygen comment. isdoxy15 IS_DOXYGEN_START |
| 61 | /** Blah-blah-blah */ |
| 62 | /// Doxygen comment. IS_DOXYGEN_END |
| 63 | void isdoxy15(void); |
| 64 | |
| 65 | /** Blah-blah-blah. isdoxy16 IS_DOXYGEN_START *//** Blah */ |
| 66 | /// Doxygen comment. IS_DOXYGEN_END |
| 67 | void isdoxy16(void); |
| 68 | |
| 69 | /// isdoxy17 IS_DOXYGEN_START |
| 70 | // Not a Doxygen comment, but still picked up. |
| 71 | /// IS_DOXYGEN_END |
| 72 | void isdoxy17(void); |
| 73 | |
| 74 | unsigned |
| 75 | // NOT_DOXYGEN |
| 76 | /// isdoxy18 IS_DOXYGEN_START |
| 77 | // Not a Doxygen comment, but still picked up. |
| 78 | /// IS_DOXYGEN_END |
| 79 | // NOT_DOXYGEN |
| 80 | int 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 | */ |
| 90 | void 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 */ |
| 96 | void isdoxy20(int); |
| 97 | |
Dmitri Gribenko | 9c00676 | 2012-07-06 23:27:33 +0000 | [diff] [blame] | 98 | void notdoxy21(int); ///< This is a member comment. isdoxy21 IS_DOXYGEN_NOT_ATTACHED |
Dmitri Gribenko | aa0cd85 | 2012-06-20 00:34:58 +0000 | [diff] [blame] | 99 | |
Dmitri Gribenko | 9c00676 | 2012-07-06 23:27:33 +0000 | [diff] [blame] | 100 | void notdoxy22(int); /*!< This is a member comment. isdoxy22 IS_DOXYGEN_NOT_ATTACHED */ |
Dmitri Gribenko | aa0cd85 | 2012-06-20 00:34:58 +0000 | [diff] [blame] | 101 | |
Dmitri Gribenko | 9c00676 | 2012-07-06 23:27:33 +0000 | [diff] [blame] | 102 | void notdoxy23(int); /**< This is a member comment. isdoxy23 IS_DOXYGEN_NOT_ATTACHED */ |
Dmitri Gribenko | aa0cd85 | 2012-06-20 00:34:58 +0000 | [diff] [blame] | 103 | |
| 104 | void notdoxy24(int); // NOT_DOXYGEN |
| 105 | |
| 106 | /// IS_DOXYGEN_SINGLE |
| 107 | struct isdoxy25 { |
| 108 | }; |
| 109 | |
| 110 | struct test26 { |
| 111 | /// IS_DOXYGEN_SINGLE |
| 112 | int isdoxy26; |
| 113 | }; |
| 114 | |
| 115 | struct test27 { |
| 116 | int isdoxy27; ///< IS_DOXYGEN_SINGLE |
| 117 | }; |
| 118 | |
| 119 | struct notdoxy28 { |
| 120 | }; ///< IS_DOXYGEN_NOT_ATTACHED |
| 121 | |
| 122 | /// IS_DOXYGEN_SINGLE |
| 123 | enum isdoxy29 { |
| 124 | }; |
| 125 | |
| 126 | enum notdoxy30 { |
| 127 | }; ///< IS_DOXYGEN_NOT_ATTACHED |
| 128 | |
| 129 | /// IS_DOXYGEN_SINGLE |
| 130 | namespace isdoxy31 { |
| 131 | }; |
| 132 | |
| 133 | namespace notdoxy32 { |
| 134 | }; ///< IS_DOXYGEN_NOT_ATTACHED |
| 135 | |
| 136 | class 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 |
| 155 | void isdoxy40(int); |
| 156 | |
| 157 | unsigned |
| 158 | /// isdoxy41 IS_DOXYGEN_SINGLE |
| 159 | // NOT_DOXYGEN |
| 160 | int isdoxy41(int); |
| 161 | |
| 162 | class test42 { |
| 163 | int isdoxy42; /* NOT_DOXYGEN */ ///< isdoxy42 IS_DOXYGEN_SINGLE |
| 164 | }; |
| 165 | |
Dmitri Gribenko | 2d44d77 | 2012-06-26 20:39:18 +0000 | [diff] [blame] | 166 | /// 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 | */ |
| 176 | void isdoxy43(void); |
| 177 | |
| 178 | /// IS_DOXYGEN_START Aaa bbb |
| 179 | /// ccc. |
| 180 | /// |
| 181 | /// Ddd eee. |
| 182 | /// Fff. |
| 183 | /// |
| 184 | /// Ggg. IS_DOXYGEN_END |
| 185 | void 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 |
| 195 | void isdoxy45(void); |
| 196 | |
Dmitri Gribenko | 659a712 | 2012-07-17 18:35:14 +0000 | [diff] [blame] | 197 | /// IS_DOXYGEN_START Aaa bbb |
| 198 | /// ccc. |
| 199 | /// |
| 200 | /// \short |
| 201 | /// Ddd eee. |
| 202 | /// Fff. |
| 203 | /// |
| 204 | /// Ggg. IS_DOXYGEN_END |
| 205 | void isdoxy46(void); |
| 206 | |
Dmitri Gribenko | 8bdb58a | 2012-06-27 23:43:37 +0000 | [diff] [blame] | 207 | /// IS_DOXYGEN_NOT_ATTACHED |
| 208 | #define FOO |
Dmitri Gribenko | 659a712 | 2012-07-17 18:35:14 +0000 | [diff] [blame] | 209 | void notdoxy47(void); |
Dmitri Gribenko | 8bdb58a | 2012-06-27 23:43:37 +0000 | [diff] [blame] | 210 | |
Dmitri Gribenko | f199b9c | 2012-06-28 00:01:41 +0000 | [diff] [blame] | 211 | /// IS_DOXYGEN_START Aaa bbb |
| 212 | /// \param ccc |
| 213 | /// \returns ddd IS_DOXYGEN_END |
Dmitri Gribenko | 659a712 | 2012-07-17 18:35:14 +0000 | [diff] [blame] | 214 | void isdoxy48(int); |
Dmitri Gribenko | f199b9c | 2012-06-28 00:01:41 +0000 | [diff] [blame] | 215 | |
Dmitri Gribenko | 72021ff | 2012-07-20 17:01:34 +0000 | [diff] [blame] | 216 | /// \brief IS_DOXYGEN_START Aaa |
| 217 | /// \returns bbb IS_DOXYGEN_END |
| 218 | void isdoxy49(void); |
| 219 | |
| 220 | /// \param ccc IS_DOXYGEN_START |
| 221 | /// \returns ddd IS_DOXYGEN_END |
| 222 | void isdoxy50(int); |
| 223 | |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 224 | /// Aaa. |
| 225 | void comment_to_html_conversion_1(); |
| 226 | |
| 227 | /// \brief Aaa. |
| 228 | void comment_to_html_conversion_2(); |
| 229 | |
| 230 | /// \short Aaa. |
| 231 | void comment_to_html_conversion_3(); |
| 232 | |
| 233 | /// Aaa. |
| 234 | /// |
| 235 | /// \brief Bbb. |
| 236 | void comment_to_html_conversion_4(); |
| 237 | |
| 238 | /// Aaa. |
| 239 | /// |
| 240 | /// \brief Bbb. |
| 241 | /// |
| 242 | /// Ccc. |
| 243 | void comment_to_html_conversion_5(); |
| 244 | |
| 245 | /// \brief Aaa. |
| 246 | /// \brief Bbb. |
| 247 | void comment_to_html_conversion_6(); |
| 248 | |
| 249 | /// Aaa. |
| 250 | /// |
| 251 | /// \return Bbb. |
| 252 | void comment_to_html_conversion_7(); |
| 253 | |
| 254 | /// Aaa. |
| 255 | /// |
| 256 | /// \returns Bbb. |
| 257 | void comment_to_html_conversion_8(); |
| 258 | |
Dmitri Gribenko | 2c6b00e | 2012-07-25 17:14:58 +0000 | [diff] [blame] | 259 | /// Aaa. |
| 260 | /// |
| 261 | /// \result Bbb. |
| 262 | void comment_to_html_conversion_9(); |
| 263 | |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 264 | /// \returns Aaa. |
| 265 | /// \returns Bbb. |
Dmitri Gribenko | 2c6b00e | 2012-07-25 17:14:58 +0000 | [diff] [blame] | 266 | void comment_to_html_conversion_10(); |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 267 | |
| 268 | /// Aaa. |
| 269 | /// |
| 270 | /// Bbb. |
| 271 | /// |
| 272 | /// \returns Ccc. |
Dmitri Gribenko | 2c6b00e | 2012-07-25 17:14:58 +0000 | [diff] [blame] | 273 | void comment_to_html_conversion_11(); |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 274 | |
Dmitri Gribenko | 1f8c529 | 2012-07-23 19:41:49 +0000 | [diff] [blame] | 275 | /// \param |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 276 | void comment_to_html_conversion_12(int x1); |
| 277 | |
Dmitri Gribenko | 2c6b00e | 2012-07-25 17:14:58 +0000 | [diff] [blame] | 278 | /// \param x1 Aaa. |
Dmitri Gribenko | 1f8c529 | 2012-07-23 19:41:49 +0000 | [diff] [blame] | 279 | void comment_to_html_conversion_13(int x1); |
| 280 | |
Dmitri Gribenko | 2c6b00e | 2012-07-25 17:14:58 +0000 | [diff] [blame] | 281 | /// \param zzz Aaa. |
| 282 | void comment_to_html_conversion_14(int x1); |
| 283 | |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 284 | /// \param x2 Bbb. |
| 285 | /// \param x1 Aaa. |
Dmitri Gribenko | 2c6b00e | 2012-07-25 17:14:58 +0000 | [diff] [blame] | 286 | void comment_to_html_conversion_15(int x1, int x2); |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 287 | |
| 288 | /// \param x2 Bbb. |
| 289 | /// \param zzz Aaa. |
| 290 | /// \param x1 Aaa. |
Dmitri Gribenko | 2c6b00e | 2012-07-25 17:14:58 +0000 | [diff] [blame] | 291 | void comment_to_html_conversion_16(int x1, int x2); |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 292 | |
Dmitri Gribenko | 96b0986 | 2012-07-31 22:37:06 +0000 | [diff] [blame] | 293 | /// \tparam |
| 294 | /// \param aaa Blah blah |
| 295 | template<typename T> |
| 296 | void comment_to_html_conversion_17(T aaa); |
| 297 | |
Dmitri Gribenko | f0d151c | 2012-08-01 00:48:00 +0000 | [diff] [blame] | 298 | /// \tparam T |
| 299 | /// \param aaa Blah blah |
| 300 | template<typename T> |
| 301 | void comment_to_html_conversion_18(T aaa); |
| 302 | |
Dmitri Gribenko | 96b0986 | 2012-07-31 22:37:06 +0000 | [diff] [blame] | 303 | /// \tparam T2 Bbb |
| 304 | /// \tparam T1 Aaa |
| 305 | template<typename T1, typename T2> |
Dmitri Gribenko | f0d151c | 2012-08-01 00:48:00 +0000 | [diff] [blame] | 306 | void comment_to_html_conversion_19(T1 aaa, T2 bbb); |
Dmitri Gribenko | 96b0986 | 2012-07-31 22:37:06 +0000 | [diff] [blame] | 307 | |
| 308 | /// \tparam T2 Bbb |
| 309 | /// \tparam U Zzz |
| 310 | /// \tparam V Ccc |
| 311 | /// \tparam T1 Aaa |
| 312 | template<typename T1, typename T2, int V> |
Dmitri Gribenko | f0d151c | 2012-08-01 00:48:00 +0000 | [diff] [blame] | 313 | void comment_to_html_conversion_20(T1 aaa, T2 bbb); |
Dmitri Gribenko | 96b0986 | 2012-07-31 22:37:06 +0000 | [diff] [blame] | 314 | |
| 315 | /// \tparam TTT Ddd |
| 316 | /// \tparam C Ccc |
| 317 | /// \tparam T Aaa |
| 318 | /// \tparam TT Bbb |
| 319 | template<template<template<typename T> class TT, class C> class TTT> |
Dmitri Gribenko | f0d151c | 2012-08-01 00:48:00 +0000 | [diff] [blame] | 320 | void comment_to_html_conversion_21(); |
Dmitri Gribenko | 96b0986 | 2012-07-31 22:37:06 +0000 | [diff] [blame] | 321 | |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 322 | /// \brief Aaa. |
| 323 | /// |
| 324 | /// Bbb. |
| 325 | /// |
| 326 | /// \param x2 Ddd. |
| 327 | /// \param x1 Ccc. |
| 328 | /// \returns Eee. |
Dmitri Gribenko | f0d151c | 2012-08-01 00:48:00 +0000 | [diff] [blame] | 329 | void comment_to_html_conversion_22(int x1, int x2); |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 330 | |
| 331 | /// <br><a href="http://example.com/">Aaa</a> |
Dmitri Gribenko | f0d151c | 2012-08-01 00:48:00 +0000 | [diff] [blame] | 332 | void comment_to_html_conversion_23(); |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 333 | |
| 334 | /// \verbatim |
| 335 | /// <a href="http://example.com/">Aaa</a> |
| 336 | /// <a href='http://example.com/'>Aaa</a> |
| 337 | /// \endverbatim |
Dmitri Gribenko | 2c6b00e | 2012-07-25 17:14:58 +0000 | [diff] [blame] | 338 | void comment_to_html_conversion_24(); |
| 339 | |
Dmitri Gribenko | f0d151c | 2012-08-01 00:48:00 +0000 | [diff] [blame] | 340 | /// \b Aaa |
Dmitri Gribenko | 477a9f5 | 2012-07-27 20:37:06 +0000 | [diff] [blame] | 341 | void comment_to_html_conversion_25(); |
| 342 | |
Dmitri Gribenko | f0d151c | 2012-08-01 00:48:00 +0000 | [diff] [blame] | 343 | /// \c Aaa \p Bbb |
Dmitri Gribenko | 96b0986 | 2012-07-31 22:37:06 +0000 | [diff] [blame] | 344 | void comment_to_html_conversion_26(); |
| 345 | |
Dmitri Gribenko | f0d151c | 2012-08-01 00:48:00 +0000 | [diff] [blame] | 346 | /// \a Aaa \e Bbb \em Ccc |
Dmitri Gribenko | 96b0986 | 2012-07-31 22:37:06 +0000 | [diff] [blame] | 347 | void comment_to_html_conversion_27(); |
| 348 | |
Dmitri Gribenko | f0d151c | 2012-08-01 00:48:00 +0000 | [diff] [blame] | 349 | /// \a 1<2 \e 3<4 \em 5<6 \param 7<8 aaa \tparam 9<10 bbb |
Dmitri Gribenko | 96b0986 | 2012-07-31 22:37:06 +0000 | [diff] [blame] | 350 | void comment_to_html_conversion_28(); |
| 351 | |
Dmitri Gribenko | f0d151c | 2012-08-01 00:48:00 +0000 | [diff] [blame] | 352 | /// \\ \@ \& \$ \# \< \> \% \" \. \:: |
Dmitri Gribenko | 96b0986 | 2012-07-31 22:37:06 +0000 | [diff] [blame] | 353 | void comment_to_html_conversion_29(); |
| 354 | |
Dmitri Gribenko | f0d151c | 2012-08-01 00:48:00 +0000 | [diff] [blame] | 355 | /// & < > " |
Dmitri Gribenko | 59500fe | 2012-08-01 00:21:12 +0000 | [diff] [blame] | 356 | void comment_to_html_conversion_30(); |
| 357 | |
Dmitri Gribenko | f0d151c | 2012-08-01 00:48:00 +0000 | [diff] [blame] | 358 | /// <em>0<i</em> |
| 359 | void comment_to_html_conversion_31(); |
| 360 | |
Dmitri Gribenko | f303d4c | 2012-08-07 17:54:38 +0000 | [diff] [blame] | 361 | /// Aaa. |
| 362 | class comment_to_xml_conversion_01 { |
| 363 | /// \param aaa Blah blah. |
| 364 | comment_to_xml_conversion_01(int aaa); |
| 365 | |
| 366 | /// Aaa. |
| 367 | ~comment_to_xml_conversion_01(); |
| 368 | |
| 369 | /// \param aaa Blah blah. |
| 370 | int comment_to_xml_conversion_02(int aaa); |
| 371 | |
| 372 | /// \param aaa Blah blah. |
| 373 | static int comment_to_xml_conversion_03(int aaa); |
| 374 | |
| 375 | /// Aaa. |
| 376 | int comment_to_xml_conversion_04; |
| 377 | |
| 378 | /// Aaa. |
| 379 | static int comment_to_xml_conversion_05; |
| 380 | |
| 381 | /// \param aaa Blah blah. |
| 382 | void operator()(int aaa); |
| 383 | |
| 384 | /// Aaa. |
| 385 | operator bool(); |
| 386 | |
| 387 | /// Aaa. |
| 388 | typedef int comment_to_xml_conversion_06; |
| 389 | |
| 390 | /// Aaa. |
| 391 | using comment_to_xml_conversion_07 = int; |
| 392 | |
| 393 | template<typename T, typename U> |
| 394 | class comment_to_xml_conversion_08 { }; |
| 395 | |
| 396 | /// Aaa. |
| 397 | template<typename T> |
| 398 | using comment_to_xml_conversion_09 = comment_to_xml_conversion_08<T, int>; |
| 399 | }; |
| 400 | |
| 401 | /// Aaa. |
| 402 | template<typename T, typename U> |
| 403 | void comment_to_xml_conversion_10(T aaa, U bbb); |
| 404 | |
| 405 | /// Aaa. |
| 406 | template<> |
| 407 | void comment_to_xml_conversion_10(int aaa, int bbb); |
| 408 | |
| 409 | /// Aaa. |
| 410 | template<typename T, typename U> |
| 411 | class comment_to_xml_conversion_11 { }; |
| 412 | |
| 413 | /// Aaa. |
| 414 | template<typename T> |
| 415 | class comment_to_xml_conversion_11<T, int> { }; |
| 416 | |
| 417 | /// Aaa. |
| 418 | template<> |
| 419 | class comment_to_xml_conversion_11<int, int> { }; |
| 420 | |
| 421 | /// Aaa. |
| 422 | int comment_to_xml_conversion_12; |
| 423 | |
| 424 | /// Aaa. |
| 425 | namespace comment_to_xml_conversion_13 { |
| 426 | /// Aaa. |
| 427 | namespace comment_to_xml_conversion_14 { |
| 428 | } |
| 429 | } |
| 430 | |
Dmitri Gribenko | dd7b803 | 2012-08-07 18:12:22 +0000 | [diff] [blame^] | 431 | enum comment_to_xml_conversion_15 { |
| 432 | /// Aaa. |
| 433 | comment_to_xml_conversion_16 |
| 434 | }; |
| 435 | |
Dmitri Gribenko | aa0cd85 | 2012-06-20 00:34:58 +0000 | [diff] [blame] | 436 | #endif |
| 437 | |
| 438 | // RUN: rm -rf %t |
| 439 | // RUN: mkdir %t |
Dmitri Gribenko | f303d4c | 2012-08-07 17:54:38 +0000 | [diff] [blame] | 440 | // RUN: %clang_cc1 -x c++ -std=c++11 -emit-pch -o %t/out.pch %s |
| 441 | // RUN: %clang_cc1 -x c++ -std=c++11 -include-pch %t/out.pch -fsyntax-only %s |
Dmitri Gribenko | aa0cd85 | 2012-06-20 00:34:58 +0000 | [diff] [blame] | 442 | |
Dmitri Gribenko | f303d4c | 2012-08-07 17:54:38 +0000 | [diff] [blame] | 443 | // 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 |
Dmitri Gribenko | aa0cd85 | 2012-06-20 00:34:58 +0000 | [diff] [blame] | 444 | // RUN: c-index-test -test-load-tu %t/out.pch all > %t/out.c-index-pch |
| 445 | |
| 446 | // RUN: FileCheck %s -check-prefix=WRONG < %t/out.c-index-direct |
| 447 | // RUN: FileCheck %s -check-prefix=WRONG < %t/out.c-index-pch |
| 448 | |
| 449 | // Declarations without Doxygen comments should not pick up some Doxygen comments. |
| 450 | // WRONG-NOT: notdoxy{{.*}}Comment= |
| 451 | // WRONG-NOT: test{{.*}}Comment= |
| 452 | |
| 453 | // Non-Doxygen comments should not be attached to anything. |
| 454 | // WRONG-NOT: NOT_DOXYGEN |
| 455 | |
| 456 | // Some Doxygen comments are not attached to anything. |
| 457 | // WRONG-NOT: IS_DOXYGEN_NOT_ATTACHED |
| 458 | |
| 459 | // Ensure we don't pick up extra comments. |
Dmitri Gribenko | 2d44d77 | 2012-06-26 20:39:18 +0000 | [diff] [blame] | 460 | // WRONG-NOT: IS_DOXYGEN_START{{.*}}IS_DOXYGEN_START{{.*}}BriefComment= |
| 461 | // WRONG-NOT: IS_DOXYGEN_END{{.*}}IS_DOXYGEN_END{{.*}}BriefComment= |
Dmitri Gribenko | f303d4c | 2012-08-07 17:54:38 +0000 | [diff] [blame] | 462 | // |
| 463 | // Ensure that XML is not invalid |
| 464 | // WRONG-NOT: CommentXMLInvalid |
Dmitri Gribenko | aa0cd85 | 2012-06-20 00:34:58 +0000 | [diff] [blame] | 465 | |
| 466 | // RUN: FileCheck %s < %t/out.c-index-direct |
| 467 | // RUN: FileCheck %s < %t/out.c-index-pch |
| 468 | |
| 469 | // CHECK: annotate-comments.cpp:16:6: FunctionDecl=isdoxy4:{{.*}} isdoxy4 IS_DOXYGEN_SINGLE |
| 470 | // CHECK: annotate-comments.cpp:20:6: FunctionDecl=isdoxy5:{{.*}} isdoxy5 IS_DOXYGEN_SINGLE |
| 471 | // CHECK: annotate-comments.cpp:25:6: FunctionDecl=isdoxy6:{{.*}} isdoxy6 IS_DOXYGEN_SINGLE |
| 472 | // CHECK: annotate-comments.cpp:31:6: FunctionDecl=isdoxy7:{{.*}} isdoxy7 IS_DOXYGEN_SINGLE |
| 473 | // CHECK: annotate-comments.cpp:34:6: FunctionDecl=isdoxy8:{{.*}} isdoxy8 IS_DOXYGEN_SINGLE |
| 474 | // CHECK: annotate-comments.cpp:37:6: FunctionDecl=isdoxy9:{{.*}} isdoxy9 IS_DOXYGEN_SINGLE |
| 475 | // CHECK: annotate-comments.cpp:41:6: FunctionDecl=isdoxy10:{{.*}} isdoxy10 IS_DOXYGEN_SINGLE |
| 476 | // CHECK: annotate-comments.cpp:53:6: FunctionDecl=isdoxy13:{{.*}} isdoxy13 IS_DOXYGEN_START{{.*}} IS_DOXYGEN_END |
| 477 | // CHECK: annotate-comments.cpp:58:6: FunctionDecl=isdoxy14:{{.*}} isdoxy14 IS_DOXYGEN_START{{.*}} IS_DOXYGEN_END |
| 478 | // CHECK: annotate-comments.cpp:63:6: FunctionDecl=isdoxy15:{{.*}} isdoxy15 IS_DOXYGEN_START{{.*}} IS_DOXYGEN_END |
| 479 | // CHECK: annotate-comments.cpp:67:6: FunctionDecl=isdoxy16:{{.*}} isdoxy16 IS_DOXYGEN_START{{.*}} IS_DOXYGEN_END |
| 480 | // CHECK: annotate-comments.cpp:72:6: FunctionDecl=isdoxy17:{{.*}} isdoxy17 IS_DOXYGEN_START{{.*}} IS_DOXYGEN_END |
| 481 | // CHECK: annotate-comments.cpp:80:5: FunctionDecl=isdoxy18:{{.*}} isdoxy18 IS_DOXYGEN_START{{.*}} IS_DOXYGEN_END |
| 482 | // CHECK: annotate-comments.cpp:90:6: FunctionDecl=isdoxy19:{{.*}} isdoxy19 IS_DOXYGEN_START{{.*}} IS_DOXYGEN_END |
| 483 | // CHECK: annotate-comments.cpp:96:6: FunctionDecl=isdoxy20:{{.*}} isdoxy20 IS_DOXYGEN_START{{.*}} IS_DOXYGEN_END |
Dmitri Gribenko | aa0cd85 | 2012-06-20 00:34:58 +0000 | [diff] [blame] | 484 | // CHECK: annotate-comments.cpp:107:8: StructDecl=isdoxy25:{{.*}} IS_DOXYGEN_SINGLE |
| 485 | // CHECK: annotate-comments.cpp:112:7: FieldDecl=isdoxy26:{{.*}} IS_DOXYGEN_SINGLE |
| 486 | // CHECK: annotate-comments.cpp:116:7: FieldDecl=isdoxy27:{{.*}} IS_DOXYGEN_SINGLE |
| 487 | // CHECK: annotate-comments.cpp:123:6: EnumDecl=isdoxy29:{{.*}} IS_DOXYGEN_SINGLE |
| 488 | // CHECK: annotate-comments.cpp:130:11: Namespace=isdoxy31:{{.*}} IS_DOXYGEN_SINGLE |
| 489 | // CHECK: annotate-comments.cpp:138:7: FieldDecl=isdoxy33:{{.*}} isdoxy33 IS_DOXYGEN_SINGLE |
| 490 | // CHECK: annotate-comments.cpp:139:7: FieldDecl=isdoxy34:{{.*}} isdoxy34 IS_DOXYGEN_SINGLE |
| 491 | // CHECK: annotate-comments.cpp:142:7: FieldDecl=isdoxy35:{{.*}} isdoxy35 IS_DOXYGEN_SINGLE |
| 492 | // CHECK: annotate-comments.cpp:143:7: FieldDecl=isdoxy36:{{.*}} isdoxy36 IS_DOXYGEN_SINGLE |
| 493 | // CHECK: annotate-comments.cpp:146:7: FieldDecl=isdoxy37:{{.*}} isdoxy37 IS_DOXYGEN_SINGLE |
| 494 | // CHECK: annotate-comments.cpp:147:7: FieldDecl=isdoxy38:{{.*}} isdoxy38 IS_DOXYGEN_SINGLE |
| 495 | // CHECK: annotate-comments.cpp:148:7: FieldDecl=isdoxy39:{{.*}} isdoxy39 IS_DOXYGEN_SINGLE |
| 496 | // CHECK: annotate-comments.cpp:155:6: FunctionDecl=isdoxy40:{{.*}} isdoxy40 IS_DOXYGEN_SINGLE |
| 497 | // CHECK: annotate-comments.cpp:160:5: FunctionDecl=isdoxy41:{{.*}} isdoxy41 IS_DOXYGEN_SINGLE |
| 498 | // CHECK: annotate-comments.cpp:163:7: FieldDecl=isdoxy42:{{.*}} isdoxy42 IS_DOXYGEN_SINGLE |
Dmitri Gribenko | 2d44d77 | 2012-06-26 20:39:18 +0000 | [diff] [blame] | 499 | // CHECK: annotate-comments.cpp:176:6: FunctionDecl=isdoxy43:{{.*}} IS_DOXYGEN_START{{.*}} IS_DOXYGEN_END |
| 500 | |
Dmitri Gribenko | d558b52 | 2012-06-28 01:38:21 +0000 | [diff] [blame] | 501 | // CHECK: annotate-comments.cpp:185:6: FunctionDecl=isdoxy44:{{.*}} BriefComment=[IS_DOXYGEN_START Aaa bbb ccc.] |
| 502 | // CHECK: annotate-comments.cpp:195:6: FunctionDecl=isdoxy45:{{.*}} BriefComment=[Ddd eee. Fff.] |
Dmitri Gribenko | 659a712 | 2012-07-17 18:35:14 +0000 | [diff] [blame] | 503 | // CHECK: annotate-comments.cpp:205:6: FunctionDecl=isdoxy46:{{.*}} BriefComment=[Ddd eee. Fff.] |
| 504 | // CHECK: annotate-comments.cpp:214:6: FunctionDecl=isdoxy48:{{.*}} BriefComment=[IS_DOXYGEN_START Aaa bbb] |
Dmitri Gribenko | 72021ff | 2012-07-20 17:01:34 +0000 | [diff] [blame] | 505 | // CHECK: annotate-comments.cpp:218:6: FunctionDecl=isdoxy49:{{.*}} BriefComment=[IS_DOXYGEN_START Aaa] |
| 506 | // CHECK: annotate-comments.cpp:222:6: FunctionDecl=isdoxy50:{{.*}} BriefComment=[Returns ddd IS_DOXYGEN_END] |
Dmitri Gribenko | aa0cd85 | 2012-06-20 00:34:58 +0000 | [diff] [blame] | 507 | |
Dmitri Gribenko | f303d4c | 2012-08-07 17:54:38 +0000 | [diff] [blame] | 508 | // CHECK: annotate-comments.cpp:225:6: FunctionDecl=comment_to_html_conversion_1:{{.*}} FullCommentAsHTML=[<p class="para-brief"> Aaa.</p>] FullCommentAsXML=[<Function file="{{[^"]+}}annotate-comments.cpp" line="225" column="6"><Name>comment_to_html_conversion_1</Name><USR>c:@F@comment_to_html_conversion_1#</USR><Abstract><Para> Aaa.</Para></Abstract></Function>] |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 509 | // CHECK-NEXT: CommentAST=[ |
| 510 | // CHECK-NEXT: (CXComment_FullComment |
| 511 | // CHECK-NEXT: (CXComment_Paragraph |
| 512 | // CHECK-NEXT: (CXComment_Text Text=[ Aaa.])))] |
Dmitri Gribenko | f303d4c | 2012-08-07 17:54:38 +0000 | [diff] [blame] | 513 | // CHECK: annotate-comments.cpp:228:6: FunctionDecl=comment_to_html_conversion_2:{{.*}} FullCommentAsHTML=[<p class="para-brief"> Aaa.</p>] FullCommentAsXML=[<Function file="{{[^"]+}}annotate-comments.cpp" line="228" column="6"><Name>comment_to_html_conversion_2</Name><USR>c:@F@comment_to_html_conversion_2#</USR><Abstract><Para> Aaa.</Para></Abstract></Function>] |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 514 | // CHECK-NEXT: CommentAST=[ |
| 515 | // CHECK-NEXT: (CXComment_FullComment |
| 516 | // CHECK-NEXT: (CXComment_Paragraph IsWhitespace |
| 517 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)) |
| 518 | // CHECK-NEXT: (CXComment_BlockCommand CommandName=[brief] |
| 519 | // CHECK-NEXT: (CXComment_Paragraph |
| 520 | // CHECK-NEXT: (CXComment_Text Text=[ Aaa.]))))] |
Dmitri Gribenko | f303d4c | 2012-08-07 17:54:38 +0000 | [diff] [blame] | 521 | // CHECK: annotate-comments.cpp:231:6: FunctionDecl=comment_to_html_conversion_3:{{.*}} FullCommentAsHTML=[<p class="para-brief"> Aaa.</p>] FullCommentAsXML=[<Function file="{{[^"]+}}annotate-comments.cpp" line="231" column="6"><Name>comment_to_html_conversion_3</Name><USR>c:@F@comment_to_html_conversion_3#</USR><Abstract><Para> Aaa.</Para></Abstract></Function>] |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 522 | // CHECK-NEXT: CommentAST=[ |
| 523 | // CHECK-NEXT: (CXComment_FullComment |
| 524 | // CHECK-NEXT: (CXComment_Paragraph IsWhitespace |
| 525 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)) |
| 526 | // CHECK-NEXT: (CXComment_BlockCommand CommandName=[short] |
| 527 | // CHECK-NEXT: (CXComment_Paragraph |
| 528 | // CHECK-NEXT: (CXComment_Text Text=[ Aaa.]))))] |
Dmitri Gribenko | f303d4c | 2012-08-07 17:54:38 +0000 | [diff] [blame] | 529 | // CHECK: annotate-comments.cpp:236:6: FunctionDecl=comment_to_html_conversion_4:{{.*}} FullCommentAsHTML=[<p class="para-brief"> Bbb.</p><p> Aaa.</p>] FullCommentAsXML=[<Function file="{{[^"]+}}annotate-comments.cpp" line="236" column="6"><Name>comment_to_html_conversion_4</Name><USR>c:@F@comment_to_html_conversion_4#</USR><Abstract><Para> Bbb.</Para></Abstract><Discussion><Para> Aaa.</Para></Discussion></Function>] |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 530 | // CHECK-NEXT: CommentAST=[ |
| 531 | // CHECK-NEXT: (CXComment_FullComment |
| 532 | // CHECK-NEXT: (CXComment_Paragraph |
| 533 | // CHECK-NEXT: (CXComment_Text Text=[ Aaa.])) |
| 534 | // CHECK-NEXT: (CXComment_Paragraph IsWhitespace |
| 535 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)) |
| 536 | // CHECK-NEXT: (CXComment_BlockCommand CommandName=[brief] |
| 537 | // CHECK-NEXT: (CXComment_Paragraph |
| 538 | // CHECK-NEXT: (CXComment_Text Text=[ Bbb.]))))] |
Dmitri Gribenko | f303d4c | 2012-08-07 17:54:38 +0000 | [diff] [blame] | 539 | // 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>] FullCommentAsXML=[<Function file="{{[^"]+}}annotate-comments.cpp" line="243" column="6"><Name>comment_to_html_conversion_5</Name><USR>c:@F@comment_to_html_conversion_5#</USR><Abstract><Para> Bbb.</Para></Abstract><Discussion><Para> Aaa.</Para><Para> Ccc.</Para></Discussion></Function>] |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 540 | // CHECK-NEXT: CommentAST=[ |
| 541 | // CHECK-NEXT: (CXComment_FullComment |
| 542 | // CHECK-NEXT: (CXComment_Paragraph |
| 543 | // CHECK-NEXT: (CXComment_Text Text=[ Aaa.])) |
| 544 | // CHECK-NEXT: (CXComment_Paragraph IsWhitespace |
| 545 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)) |
| 546 | // CHECK-NEXT: (CXComment_BlockCommand CommandName=[brief] |
| 547 | // CHECK-NEXT: (CXComment_Paragraph |
| 548 | // CHECK-NEXT: (CXComment_Text Text=[ Bbb.]))) |
| 549 | // CHECK-NEXT: (CXComment_Paragraph |
| 550 | // CHECK-NEXT: (CXComment_Text Text=[ Ccc.])))] |
Dmitri Gribenko | f303d4c | 2012-08-07 17:54:38 +0000 | [diff] [blame] | 551 | // 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>] FullCommentAsXML=[<Function file="{{[^"]+}}annotate-comments.cpp" line="247" column="6"><Name>comment_to_html_conversion_6</Name><USR>c:@F@comment_to_html_conversion_6#</USR><Abstract><Para> Aaa. </Para></Abstract><Discussion><Para> Bbb.</Para></Discussion></Function>] |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 552 | // CHECK-NEXT: CommentAST=[ |
| 553 | // CHECK-NEXT: (CXComment_FullComment |
| 554 | // CHECK-NEXT: (CXComment_Paragraph IsWhitespace |
| 555 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)) |
| 556 | // CHECK-NEXT: (CXComment_BlockCommand CommandName=[brief] |
| 557 | // CHECK-NEXT: (CXComment_Paragraph |
| 558 | // CHECK-NEXT: (CXComment_Text Text=[ Aaa.] HasTrailingNewline) |
| 559 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace))) |
| 560 | // CHECK-NEXT: (CXComment_BlockCommand CommandName=[brief] |
| 561 | // CHECK-NEXT: (CXComment_Paragraph |
| 562 | // CHECK-NEXT: (CXComment_Text Text=[ Bbb.]))))] |
Dmitri Gribenko | f303d4c | 2012-08-07 17:54:38 +0000 | [diff] [blame] | 563 | // 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>] FullCommentAsXML=[<Function file="{{[^"]+}}annotate-comments.cpp" line="252" column="6"><Name>comment_to_html_conversion_7</Name><USR>c:@F@comment_to_html_conversion_7#</USR><Abstract><Para> Aaa.</Para></Abstract><ResultDiscussion><Para> Bbb.</Para></ResultDiscussion></Function>] |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 564 | // CHECK-NEXT: CommentAST=[ |
| 565 | // CHECK-NEXT: (CXComment_FullComment |
| 566 | // CHECK-NEXT: (CXComment_Paragraph |
| 567 | // CHECK-NEXT: (CXComment_Text Text=[ Aaa.])) |
| 568 | // CHECK-NEXT: (CXComment_Paragraph IsWhitespace |
| 569 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)) |
| 570 | // CHECK-NEXT: (CXComment_BlockCommand CommandName=[return] |
| 571 | // CHECK-NEXT: (CXComment_Paragraph |
| 572 | // CHECK-NEXT: (CXComment_Text Text=[ Bbb.]))))] |
Dmitri Gribenko | f303d4c | 2012-08-07 17:54:38 +0000 | [diff] [blame] | 573 | // 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>] FullCommentAsXML=[<Function file="{{[^"]+}}annotate-comments.cpp" line="257" column="6"><Name>comment_to_html_conversion_8</Name><USR>c:@F@comment_to_html_conversion_8#</USR><Abstract><Para> Aaa.</Para></Abstract><ResultDiscussion><Para> Bbb.</Para></ResultDiscussion></Function>] |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 574 | // CHECK-NEXT: CommentAST=[ |
| 575 | // CHECK-NEXT: (CXComment_FullComment |
| 576 | // CHECK-NEXT: (CXComment_Paragraph |
| 577 | // CHECK-NEXT: (CXComment_Text Text=[ Aaa.])) |
| 578 | // CHECK-NEXT: (CXComment_Paragraph IsWhitespace |
| 579 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)) |
| 580 | // CHECK-NEXT: (CXComment_BlockCommand CommandName=[returns] |
| 581 | // CHECK-NEXT: (CXComment_Paragraph |
| 582 | // CHECK-NEXT: (CXComment_Text Text=[ Bbb.]))))] |
Dmitri Gribenko | f303d4c | 2012-08-07 17:54:38 +0000 | [diff] [blame] | 583 | // 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>] FullCommentAsXML=[<Function file="{{[^"]+}}annotate-comments.cpp" line="262" column="6"><Name>comment_to_html_conversion_9</Name><USR>c:@F@comment_to_html_conversion_9#</USR><Abstract><Para> Aaa.</Para></Abstract><Discussion><Para> Bbb.</Para></Discussion></Function>] |
Dmitri Gribenko | 2c6b00e | 2012-07-25 17:14:58 +0000 | [diff] [blame] | 584 | // CHECK-NEXT: CommentAST=[ |
| 585 | // CHECK-NEXT: (CXComment_FullComment |
| 586 | // CHECK-NEXT: (CXComment_Paragraph |
| 587 | // CHECK-NEXT: (CXComment_Text Text=[ Aaa.])) |
| 588 | // CHECK-NEXT: (CXComment_Paragraph IsWhitespace |
| 589 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)) |
| 590 | // CHECK-NEXT: (CXComment_BlockCommand CommandName=[result] |
| 591 | // CHECK-NEXT: (CXComment_Paragraph |
| 592 | // CHECK-NEXT: (CXComment_Text Text=[ Bbb.]))))] |
Dmitri Gribenko | f303d4c | 2012-08-07 17:54:38 +0000 | [diff] [blame] | 593 | // 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>] FullCommentAsXML=[<Function file="{{[^"]+}}annotate-comments.cpp" line="266" column="6"><Name>comment_to_html_conversion_10</Name><USR>c:@F@comment_to_html_conversion_10#</USR><ResultDiscussion><Para> Aaa. </Para></ResultDiscussion><Discussion><Para> Bbb.</Para></Discussion></Function>] |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 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_BlockCommand CommandName=[returns] |
| 599 | // CHECK-NEXT: (CXComment_Paragraph |
| 600 | // CHECK-NEXT: (CXComment_Text Text=[ Aaa.] HasTrailingNewline) |
| 601 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace))) |
| 602 | // CHECK-NEXT: (CXComment_BlockCommand CommandName=[returns] |
| 603 | // CHECK-NEXT: (CXComment_Paragraph |
| 604 | // CHECK-NEXT: (CXComment_Text Text=[ Bbb.]))))] |
Dmitri Gribenko | f303d4c | 2012-08-07 17:54:38 +0000 | [diff] [blame] | 605 | // 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>] FullCommentAsXML=[<Function file="{{[^"]+}}annotate-comments.cpp" line="273" column="6"><Name>comment_to_html_conversion_11</Name><USR>c:@F@comment_to_html_conversion_11#</USR><Abstract><Para> Aaa.</Para></Abstract><ResultDiscussion><Para> Ccc.</Para></ResultDiscussion><Discussion><Para> Bbb.</Para></Discussion></Function>] |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 606 | // CHECK-NEXT: CommentAST=[ |
| 607 | // CHECK-NEXT: (CXComment_FullComment |
| 608 | // CHECK-NEXT: (CXComment_Paragraph |
| 609 | // CHECK-NEXT: (CXComment_Text Text=[ Aaa.])) |
| 610 | // CHECK-NEXT: (CXComment_Paragraph |
| 611 | // CHECK-NEXT: (CXComment_Text Text=[ Bbb.])) |
| 612 | // CHECK-NEXT: (CXComment_Paragraph IsWhitespace |
| 613 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)) |
| 614 | // CHECK-NEXT: (CXComment_BlockCommand CommandName=[returns] |
| 615 | // CHECK-NEXT: (CXComment_Paragraph |
| 616 | // CHECK-NEXT: (CXComment_Text Text=[ Ccc.]))))] |
Dmitri Gribenko | f303d4c | 2012-08-07 17:54:38 +0000 | [diff] [blame] | 617 | // CHECK: annotate-comments.cpp:276:6: FunctionDecl=comment_to_html_conversion_12:{{.*}} FullCommentAsHTML=[] FullCommentAsXML=[<Function file="{{[^"]+}}annotate-comments.cpp" line="276" column="6"><Name>comment_to_html_conversion_12</Name><USR>c:@F@comment_to_html_conversion_12#I#</USR></Function>] |
Dmitri Gribenko | 1f8c529 | 2012-07-23 19:41:49 +0000 | [diff] [blame] | 618 | // CHECK-NEXT: CommentAST=[ |
| 619 | // CHECK-NEXT: (CXComment_FullComment |
| 620 | // CHECK-NEXT: (CXComment_Paragraph IsWhitespace |
| 621 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)) |
| 622 | // CHECK-NEXT: (CXComment_ParamCommand in implicitly ParamName=[] ParamIndex=Invalid |
| 623 | // CHECK-NEXT: (CXComment_Paragraph IsWhitespace)))] |
Dmitri Gribenko | f303d4c | 2012-08-07 17:54:38 +0000 | [diff] [blame] | 624 | // 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>] FullCommentAsXML=[<Function file="{{[^"]+}}annotate-comments.cpp" line="279" column="6"><Name>comment_to_html_conversion_13</Name><USR>c:@F@comment_to_html_conversion_13#I#</USR><Parameters><Parameter><Name>x1</Name><Index>0</Index><Direction isExplicit="0">in</Direction><Discussion><Para> Aaa.</Para></Discussion></Parameter></Parameters></Function>] |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 625 | // CHECK-NEXT: CommentAST=[ |
| 626 | // CHECK-NEXT: (CXComment_FullComment |
| 627 | // CHECK-NEXT: (CXComment_Paragraph IsWhitespace |
| 628 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)) |
| 629 | // CHECK-NEXT: (CXComment_ParamCommand in implicitly ParamName=[x1] ParamIndex=0 |
| 630 | // CHECK-NEXT: (CXComment_Paragraph |
| 631 | // CHECK-NEXT: (CXComment_Text Text=[ Aaa.]))))] |
Dmitri Gribenko | f303d4c | 2012-08-07 17:54:38 +0000 | [diff] [blame] | 632 | // 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>] FullCommentAsXML=[<Function file="{{[^"]+}}annotate-comments.cpp" line="282" column="6"><Name>comment_to_html_conversion_14</Name><USR>c:@F@comment_to_html_conversion_14#I#</USR><Parameters><Parameter><Name>zzz</Name><Direction isExplicit="0">in</Direction><Discussion><Para> Aaa.</Para></Discussion></Parameter></Parameters></Function>] |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 633 | // CHECK-NEXT: CommentAST=[ |
| 634 | // CHECK-NEXT: (CXComment_FullComment |
| 635 | // CHECK-NEXT: (CXComment_Paragraph IsWhitespace |
| 636 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)) |
| 637 | // CHECK-NEXT: (CXComment_ParamCommand in implicitly ParamName=[zzz] ParamIndex=Invalid |
| 638 | // CHECK-NEXT: (CXComment_Paragraph |
| 639 | // CHECK-NEXT: (CXComment_Text Text=[ Aaa.]))))] |
Dmitri Gribenko | f303d4c | 2012-08-07 17:54:38 +0000 | [diff] [blame] | 640 | // 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>] FullCommentAsXML=[<Function file="{{[^"]+}}annotate-comments.cpp" line="286" column="6"><Name>comment_to_html_conversion_15</Name><USR>c:@F@comment_to_html_conversion_15#I#I#</USR><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>] |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 641 | // CHECK-NEXT: CommentAST=[ |
| 642 | // CHECK-NEXT: (CXComment_FullComment |
| 643 | // CHECK-NEXT: (CXComment_Paragraph IsWhitespace |
| 644 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)) |
| 645 | // CHECK-NEXT: (CXComment_ParamCommand in implicitly ParamName=[x2] ParamIndex=1 |
| 646 | // CHECK-NEXT: (CXComment_Paragraph |
| 647 | // CHECK-NEXT: (CXComment_Text Text=[ Bbb.] HasTrailingNewline) |
| 648 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace))) |
| 649 | // CHECK-NEXT: (CXComment_ParamCommand in implicitly ParamName=[x1] ParamIndex=0 |
| 650 | // CHECK-NEXT: (CXComment_Paragraph |
| 651 | // CHECK-NEXT: (CXComment_Text Text=[ Aaa.]))))] |
Dmitri Gribenko | f303d4c | 2012-08-07 17:54:38 +0000 | [diff] [blame] | 652 | // 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>] FullCommentAsXML=[<Function file="{{[^"]+}}annotate-comments.cpp" line="291" column="6"><Name>comment_to_html_conversion_16</Name><USR>c:@F@comment_to_html_conversion_16#I#I#</USR><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>] |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 653 | // CHECK-NEXT: CommentAST=[ |
| 654 | // CHECK-NEXT: (CXComment_FullComment |
| 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=[ Bbb.] HasTrailingNewline) |
| 660 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace))) |
| 661 | // CHECK-NEXT: (CXComment_ParamCommand in implicitly ParamName=[zzz] ParamIndex=Invalid |
| 662 | // CHECK-NEXT: (CXComment_Paragraph |
| 663 | // CHECK-NEXT: (CXComment_Text Text=[ Aaa.] HasTrailingNewline) |
| 664 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace))) |
| 665 | // CHECK-NEXT: (CXComment_ParamCommand in implicitly ParamName=[x1] ParamIndex=0 |
| 666 | // CHECK-NEXT: (CXComment_Paragraph |
| 667 | // CHECK-NEXT: (CXComment_Text Text=[ Aaa.]))))] |
Dmitri Gribenko | f303d4c | 2012-08-07 17:54:38 +0000 | [diff] [blame] | 668 | // 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>] FullCommentAsXML=[<Function templateKind="template" file="{{[^"]+}}annotate-comments.cpp" line="296" column="6"><Name>comment_to_html_conversion_17</Name><USR>c:@FT@>1#Tcomment_to_html_conversion_17#t0.0#</USR><Parameters><Parameter><Name>aaa</Name><Index>0</Index><Direction isExplicit="0">in</Direction><Discussion><Para> Blah blah</Para></Discussion></Parameter></Parameters></Function>] |
Dmitri Gribenko | 96b0986 | 2012-07-31 22:37:06 +0000 | [diff] [blame] | 669 | // CHECK-NEXT: CommentAST=[ |
| 670 | // CHECK-NEXT: (CXComment_FullComment |
| 671 | // CHECK-NEXT: (CXComment_Paragraph IsWhitespace |
| 672 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)) |
| 673 | // CHECK-NEXT: (CXComment_TParamCommand ParamName=[] ParamPosition=Invalid |
| 674 | // CHECK-NEXT: (CXComment_Paragraph IsWhitespace |
| 675 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace))) |
| 676 | // CHECK-NEXT: (CXComment_ParamCommand in implicitly ParamName=[aaa] ParamIndex=0 |
| 677 | // CHECK-NEXT: (CXComment_Paragraph |
| 678 | // CHECK-NEXT: (CXComment_Text Text=[ Blah blah]))))] |
Dmitri Gribenko | f303d4c | 2012-08-07 17:54:38 +0000 | [diff] [blame] | 679 | // CHECK: annotate-comments.cpp:301: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="{{[^"]+}}annotate-comments.cpp" line="301" column="6"><Name>comment_to_html_conversion_18</Name><USR>c:@FT@>1#Tcomment_to_html_conversion_18#t0.0#</USR><Parameters><Parameter><Name>aaa</Name><Index>0</Index><Direction isExplicit="0">in</Direction><Discussion><Para> Blah blah</Para></Discussion></Parameter></Parameters></Function>] |
Dmitri Gribenko | f0d151c | 2012-08-01 00:48:00 +0000 | [diff] [blame] | 680 | // CHECK-NEXT: CommentAST=[ |
| 681 | // CHECK-NEXT: (CXComment_FullComment |
| 682 | // CHECK-NEXT: (CXComment_Paragraph IsWhitespace |
| 683 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)) |
| 684 | // CHECK-NEXT: (CXComment_TParamCommand ParamName=[T] ParamPosition={0} |
| 685 | // CHECK-NEXT: (CXComment_Paragraph IsWhitespace |
| 686 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace))) |
| 687 | // CHECK-NEXT: (CXComment_ParamCommand in implicitly ParamName=[aaa] ParamIndex=0 |
| 688 | // CHECK-NEXT: (CXComment_Paragraph |
| 689 | // CHECK-NEXT: (CXComment_Text Text=[ Blah blah]))))] |
Dmitri Gribenko | f303d4c | 2012-08-07 17:54:38 +0000 | [diff] [blame] | 690 | // CHECK: annotate-comments.cpp:306: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="{{[^"]+}}annotate-comments.cpp" line="306" column="6"><Name>comment_to_html_conversion_19</Name><USR>c:@FT@>2#T#Tcomment_to_html_conversion_19#t0.0#t0.1#</USR><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>] |
Dmitri Gribenko | 96b0986 | 2012-07-31 22:37:06 +0000 | [diff] [blame] | 691 | // CHECK-NEXT: CommentAST=[ |
| 692 | // CHECK-NEXT: (CXComment_FullComment |
| 693 | // CHECK-NEXT: (CXComment_Paragraph IsWhitespace |
| 694 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)) |
| 695 | // CHECK-NEXT: (CXComment_TParamCommand ParamName=[T2] ParamPosition={1} |
| 696 | // CHECK-NEXT: (CXComment_Paragraph |
| 697 | // CHECK-NEXT: (CXComment_Text Text=[ Bbb] HasTrailingNewline) |
| 698 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace))) |
| 699 | // CHECK-NEXT: (CXComment_TParamCommand ParamName=[T1] ParamPosition={0} |
| 700 | // CHECK-NEXT: (CXComment_Paragraph |
| 701 | // CHECK-NEXT: (CXComment_Text Text=[ Aaa]))))] |
Dmitri Gribenko | f303d4c | 2012-08-07 17:54:38 +0000 | [diff] [blame] | 702 | // CHECK: annotate-comments.cpp:313: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="{{[^"]+}}annotate-comments.cpp" line="313" column="6"><Name>comment_to_html_conversion_20</Name><USR>c:@FT@>3#T#T#NIcomment_to_html_conversion_20#t0.0#t0.1#</USR><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>] |
Dmitri Gribenko | 96b0986 | 2012-07-31 22:37:06 +0000 | [diff] [blame] | 703 | // CHECK-NEXT: CommentAST=[ |
| 704 | // CHECK-NEXT: (CXComment_FullComment |
| 705 | // CHECK-NEXT: (CXComment_Paragraph IsWhitespace |
| 706 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)) |
| 707 | // CHECK-NEXT: (CXComment_TParamCommand ParamName=[T2] ParamPosition={1} |
| 708 | // CHECK-NEXT: (CXComment_Paragraph |
| 709 | // CHECK-NEXT: (CXComment_Text Text=[ Bbb] HasTrailingNewline) |
| 710 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace))) |
| 711 | // CHECK-NEXT: (CXComment_TParamCommand ParamName=[U] ParamPosition=Invalid |
| 712 | // CHECK-NEXT: (CXComment_Paragraph |
| 713 | // CHECK-NEXT: (CXComment_Text Text=[ Zzz] HasTrailingNewline) |
| 714 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace))) |
| 715 | // CHECK-NEXT: (CXComment_TParamCommand ParamName=[V] ParamPosition={2} |
| 716 | // CHECK-NEXT: (CXComment_Paragraph |
| 717 | // CHECK-NEXT: (CXComment_Text Text=[ Ccc] HasTrailingNewline) |
| 718 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace))) |
| 719 | // CHECK-NEXT: (CXComment_TParamCommand ParamName=[T1] ParamPosition={0} |
| 720 | // CHECK-NEXT: (CXComment_Paragraph |
| 721 | // CHECK-NEXT: (CXComment_Text Text=[ Aaa]))))] |
Dmitri Gribenko | f303d4c | 2012-08-07 17:54:38 +0000 | [diff] [blame] | 722 | // CHECK: annotate-comments.cpp:320: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="{{[^"]+}}annotate-comments.cpp" line="320" column="6"><Name>comment_to_html_conversion_21</Name><USR>c:@FT@>1#t>2#t>1#T#Tcomment_to_html_conversion_21#</USR><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>] |
Dmitri Gribenko | 96b0986 | 2012-07-31 22:37:06 +0000 | [diff] [blame] | 723 | // CHECK-NEXT: CommentAST=[ |
| 724 | // CHECK-NEXT: (CXComment_FullComment |
| 725 | // CHECK-NEXT: (CXComment_Paragraph IsWhitespace |
| 726 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)) |
| 727 | // CHECK-NEXT: (CXComment_TParamCommand ParamName=[TTT] ParamPosition={0} |
| 728 | // CHECK-NEXT: (CXComment_Paragraph |
| 729 | // CHECK-NEXT: (CXComment_Text Text=[ Ddd] HasTrailingNewline) |
| 730 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace))) |
| 731 | // CHECK-NEXT: (CXComment_TParamCommand ParamName=[C] ParamPosition={0, 1} |
| 732 | // CHECK-NEXT: (CXComment_Paragraph |
| 733 | // CHECK-NEXT: (CXComment_Text Text=[ Ccc] HasTrailingNewline) |
| 734 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace))) |
| 735 | // CHECK-NEXT: (CXComment_TParamCommand ParamName=[T] ParamPosition={0, 0, 0} |
| 736 | // CHECK-NEXT: (CXComment_Paragraph |
| 737 | // CHECK-NEXT: (CXComment_Text Text=[ Aaa] HasTrailingNewline) |
| 738 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace))) |
| 739 | // CHECK-NEXT: (CXComment_TParamCommand ParamName=[TT] ParamPosition={0, 0} |
| 740 | // CHECK-NEXT: (CXComment_Paragraph |
| 741 | // CHECK-NEXT: (CXComment_Text Text=[ Bbb]))))] |
Dmitri Gribenko | f303d4c | 2012-08-07 17:54:38 +0000 | [diff] [blame] | 742 | // CHECK: annotate-comments.cpp:329: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="{{[^"]+}}annotate-comments.cpp" line="329" column="6"><Name>comment_to_html_conversion_22</Name><USR>c:@F@comment_to_html_conversion_22#I#I#</USR><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>] |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 743 | // CHECK-NEXT: CommentAST=[ |
| 744 | // CHECK-NEXT: (CXComment_FullComment |
| 745 | // CHECK-NEXT: (CXComment_Paragraph IsWhitespace |
| 746 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)) |
| 747 | // CHECK-NEXT: (CXComment_BlockCommand CommandName=[brief] |
| 748 | // CHECK-NEXT: (CXComment_Paragraph |
| 749 | // CHECK-NEXT: (CXComment_Text Text=[ Aaa.]))) |
| 750 | // CHECK-NEXT: (CXComment_Paragraph |
| 751 | // CHECK-NEXT: (CXComment_Text Text=[ Bbb.])) |
| 752 | // CHECK-NEXT: (CXComment_Paragraph IsWhitespace |
| 753 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)) |
| 754 | // CHECK-NEXT: (CXComment_ParamCommand in implicitly ParamName=[x2] ParamIndex=1 |
| 755 | // CHECK-NEXT: (CXComment_Paragraph |
| 756 | // CHECK-NEXT: (CXComment_Text Text=[ Ddd.] HasTrailingNewline) |
| 757 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace))) |
| 758 | // CHECK-NEXT: (CXComment_ParamCommand in implicitly ParamName=[x1] ParamIndex=0 |
| 759 | // CHECK-NEXT: (CXComment_Paragraph |
| 760 | // CHECK-NEXT: (CXComment_Text Text=[ Ccc.] HasTrailingNewline) |
| 761 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace))) |
| 762 | // CHECK-NEXT: (CXComment_BlockCommand CommandName=[returns] |
| 763 | // CHECK-NEXT: (CXComment_Paragraph |
| 764 | // CHECK-NEXT: (CXComment_Text Text=[ Eee.]))))] |
Dmitri Gribenko | f303d4c | 2012-08-07 17:54:38 +0000 | [diff] [blame] | 765 | // CHECK: annotate-comments.cpp:332:6: FunctionDecl=comment_to_html_conversion_23:{{.*}} FullCommentAsHTML=[<p class="para-brief"> <br><a href="http://example.com/">Aaa</a></p>] FullCommentAsXML=[<Function file="{{[^"]+}}annotate-comments.cpp" line="332" column="6"><Name>comment_to_html_conversion_23</Name><USR>c:@F@comment_to_html_conversion_23#</USR><Abstract><Para> <rawHTML><![CDATA[<br>]]></rawHTML><rawHTML><![CDATA[<a href="http://example.com/">]]></rawHTML>Aaa<rawHTML></a></rawHTML></Para></Abstract></Function>] |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 766 | // CHECK-NEXT: CommentAST=[ |
| 767 | // CHECK-NEXT: (CXComment_FullComment |
| 768 | // CHECK-NEXT: (CXComment_Paragraph |
| 769 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace) |
| 770 | // CHECK-NEXT: (CXComment_HTMLStartTag Name=[br]) |
| 771 | // CHECK-NEXT: (CXComment_HTMLStartTag Name=[a] Attrs: href=http://example.com/) |
| 772 | // CHECK-NEXT: (CXComment_Text Text=[Aaa]) |
| 773 | // CHECK-NEXT: (CXComment_HTMLEndTag Name=[a])))] |
Dmitri Gribenko | f303d4c | 2012-08-07 17:54:38 +0000 | [diff] [blame] | 774 | // CHECK: annotate-comments.cpp:338:6: FunctionDecl=comment_to_html_conversion_24:{{.*}} FullCommentAsHTML=[<pre> <a href="http://example.com/">Aaa</a>\n <a href='http://example.com/'>Aaa</a></pre>] FullCommentAsXML=[<Function file="{{[^"]+}}annotate-comments.cpp" line="338" column="6"><Name>comment_to_html_conversion_24</Name><USR>c:@F@comment_to_html_conversion_24#</USR><Discussion><Verbatim kind="verbatim"> <a href="http://example.com/">Aaa</a>\n <a href='http://example.com/'>Aaa</a></Verbatim></Discussion></Function>] |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 775 | // CHECK-NEXT: CommentAST=[ |
| 776 | // CHECK-NEXT: (CXComment_FullComment |
| 777 | // CHECK-NEXT: (CXComment_Paragraph IsWhitespace |
| 778 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)) |
| 779 | // CHECK-NEXT: (CXComment_VerbatimBlockCommand CommandName=[verbatim] |
| 780 | // CHECK-NEXT: (CXComment_VerbatimBlockLine Text=[ <a href="http://example.com/">Aaa</a>]) |
| 781 | // CHECK-NEXT: (CXComment_VerbatimBlockLine Text=[ <a href='http://example.com/'>Aaa</a>])))] |
Dmitri Gribenko | f303d4c | 2012-08-07 17:54:38 +0000 | [diff] [blame] | 782 | // CHECK: annotate-comments.cpp:341:6: FunctionDecl=comment_to_html_conversion_25:{{.*}} FullCommentAsHTML=[<p class="para-brief"> <b>Aaa</b></p>] FullCommentAsXML=[<Function file="{{[^"]+}}annotate-comments.cpp" line="341" column="6"><Name>comment_to_html_conversion_25</Name><USR>c:@F@comment_to_html_conversion_25#</USR><Abstract><Para> <bold>Aaa</bold></Para></Abstract></Function>] |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 783 | // CHECK-NEXT: CommentAST=[ |
| 784 | // CHECK-NEXT: (CXComment_FullComment |
| 785 | // CHECK-NEXT: (CXComment_Paragraph |
| 786 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace) |
Dmitri Gribenko | 2d66a50 | 2012-07-23 16:43:01 +0000 | [diff] [blame] | 787 | // CHECK-NEXT: (CXComment_InlineCommand CommandName=[b] RenderBold Arg[0]=Aaa)))] |
Dmitri Gribenko | f303d4c | 2012-08-07 17:54:38 +0000 | [diff] [blame] | 788 | // CHECK: annotate-comments.cpp:344:6: FunctionDecl=comment_to_html_conversion_26:{{.*}} FullCommentAsHTML=[<p class="para-brief"> <tt>Aaa</tt> <tt>Bbb</tt></p>] FullCommentAsXML=[<Function file="{{[^"]+}}annotate-comments.cpp" line="344" column="6"><Name>comment_to_html_conversion_26</Name><USR>c:@F@comment_to_html_conversion_26#</USR><Abstract><Para> <monospaced>Aaa</monospaced> <monospaced>Bbb</monospaced></Para></Abstract></Function>] |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 789 | // CHECK-NEXT: CommentAST=[ |
| 790 | // CHECK-NEXT: (CXComment_FullComment |
| 791 | // CHECK-NEXT: (CXComment_Paragraph |
| 792 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace) |
Dmitri Gribenko | 2d66a50 | 2012-07-23 16:43:01 +0000 | [diff] [blame] | 793 | // CHECK-NEXT: (CXComment_InlineCommand CommandName=[c] RenderMonospaced Arg[0]=Aaa) |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 794 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace) |
Dmitri Gribenko | 2d66a50 | 2012-07-23 16:43:01 +0000 | [diff] [blame] | 795 | // CHECK-NEXT: (CXComment_InlineCommand CommandName=[p] RenderMonospaced Arg[0]=Bbb)))] |
Dmitri Gribenko | f303d4c | 2012-08-07 17:54:38 +0000 | [diff] [blame] | 796 | // CHECK: annotate-comments.cpp:347:6: FunctionDecl=comment_to_html_conversion_27:{{.*}} FullCommentAsHTML=[<p class="para-brief"> <em>Aaa</em> <em>Bbb</em> <em>Ccc</em></p>] FullCommentAsXML=[<Function file="{{[^"]+}}annotate-comments.cpp" line="347" column="6"><Name>comment_to_html_conversion_27</Name><USR>c:@F@comment_to_html_conversion_27#</USR><Abstract><Para> <emphasized>Aaa</emphasized> <emphasized>Bbb</emphasized> <emphasized>Ccc</emphasized></Para></Abstract></Function>] |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 797 | // CHECK-NEXT: CommentAST=[ |
| 798 | // CHECK-NEXT: (CXComment_FullComment |
| 799 | // CHECK-NEXT: (CXComment_Paragraph |
| 800 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace) |
Dmitri Gribenko | 2d66a50 | 2012-07-23 16:43:01 +0000 | [diff] [blame] | 801 | // CHECK-NEXT: (CXComment_InlineCommand CommandName=[a] RenderEmphasized Arg[0]=Aaa) |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 802 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace) |
Dmitri Gribenko | 2d66a50 | 2012-07-23 16:43:01 +0000 | [diff] [blame] | 803 | // CHECK-NEXT: (CXComment_InlineCommand CommandName=[e] RenderEmphasized Arg[0]=Bbb) |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 804 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace) |
Dmitri Gribenko | 2d66a50 | 2012-07-23 16:43:01 +0000 | [diff] [blame] | 805 | // CHECK-NEXT: (CXComment_InlineCommand CommandName=[em] RenderEmphasized Arg[0]=Ccc)))] |
Dmitri Gribenko | f303d4c | 2012-08-07 17:54:38 +0000 | [diff] [blame] | 806 | // CHECK: annotate-comments.cpp:350:6: FunctionDecl=comment_to_html_conversion_28:{{.*}} FullCommentAsHTML=[<p class="para-brief"> <em>1<2</em> <em>3<4</em> <em>5<6</em> </p><dl><dt class="tparam-name-index-invalid">9<10</dt><dd class="tparam-descr-index-invalid"> bbb</dd></dl><dl><dt class="param-name-index-invalid">7<8</dt><dd class="param-descr-index-invalid"> aaa </dd></dl>] FullCommentAsXML=[<Function file="{{[^"]+}}annotate-comments.cpp" line="350" column="6"><Name>comment_to_html_conversion_28</Name><USR>c:@F@comment_to_html_conversion_28#</USR><Abstract><Para> <emphasized>1<2</emphasized> <emphasized>3<4</emphasized> <emphasized>5<6</emphasized> </Para></Abstract><TemplateParameters><Parameter><Name>9<10</Name><Discussion><Para> bbb</Para></Discussion></Parameter></TemplateParameters><Parameters><Parameter><Name>7<8</Name><Direction isExplicit="0">in</Direction><Discussion><Para> aaa </Para></Discussion></Parameter></Parameters></Function>] |
Dmitri Gribenko | 59500fe | 2012-08-01 00:21:12 +0000 | [diff] [blame] | 807 | // CHECK-NEXT: CommentAST=[ |
| 808 | // CHECK-NEXT: (CXComment_FullComment |
| 809 | // CHECK-NEXT: (CXComment_Paragraph |
| 810 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace) |
| 811 | // CHECK-NEXT: (CXComment_InlineCommand CommandName=[a] RenderEmphasized Arg[0]=1<2) |
| 812 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace) |
| 813 | // CHECK-NEXT: (CXComment_InlineCommand CommandName=[e] RenderEmphasized Arg[0]=3<4) |
| 814 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace) |
| 815 | // CHECK-NEXT: (CXComment_InlineCommand CommandName=[em] RenderEmphasized Arg[0]=5<6) |
| 816 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)) |
| 817 | // CHECK-NEXT: (CXComment_ParamCommand in implicitly ParamName=[7<8] ParamIndex=Invalid |
| 818 | // CHECK-NEXT: (CXComment_Paragraph |
| 819 | // CHECK-NEXT: (CXComment_Text Text=[ aaa ]))) |
| 820 | // CHECK-NEXT: (CXComment_TParamCommand ParamName=[9<10] ParamPosition=Invalid |
| 821 | // CHECK-NEXT: (CXComment_Paragraph |
| 822 | // CHECK-NEXT: (CXComment_Text Text=[ bbb]))))] |
Dmitri Gribenko | f303d4c | 2012-08-07 17:54:38 +0000 | [diff] [blame] | 823 | // CHECK: annotate-comments.cpp:353:6: FunctionDecl=comment_to_html_conversion_29:{{.*}} FullCommentAsHTML=[<p class="para-brief"> \ @ & $ # < > % " . ::</p>] FullCommentAsXML=[<Function file="{{[^"]+}}annotate-comments.cpp" line="353" column="6"><Name>comment_to_html_conversion_29</Name><USR>c:@F@comment_to_html_conversion_29#</USR><Abstract><Para> \ @ & $ # < > % " . ::</Para></Abstract></Function>] |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 824 | // CHECK-NEXT: CommentAST=[ |
| 825 | // CHECK-NEXT: (CXComment_FullComment |
| 826 | // CHECK-NEXT: (CXComment_Paragraph |
| 827 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace) |
| 828 | // CHECK-NEXT: (CXComment_Text Text=[\]) |
| 829 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace) |
| 830 | // CHECK-NEXT: (CXComment_Text Text=[@]) |
| 831 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace) |
| 832 | // CHECK-NEXT: (CXComment_Text Text=[&]) |
| 833 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace) |
| 834 | // CHECK-NEXT: (CXComment_Text Text=[$]) |
| 835 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace) |
| 836 | // CHECK-NEXT: (CXComment_Text Text=[#]) |
| 837 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace) |
| 838 | // CHECK-NEXT: (CXComment_Text Text=[<]) |
| 839 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace) |
| 840 | // CHECK-NEXT: (CXComment_Text Text=[>]) |
| 841 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace) |
| 842 | // CHECK-NEXT: (CXComment_Text Text=[%]) |
| 843 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace) |
| 844 | // CHECK-NEXT: (CXComment_Text Text=["]) |
| 845 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace) |
| 846 | // CHECK-NEXT: (CXComment_Text Text=[.]) |
| 847 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace) |
| 848 | // CHECK-NEXT: (CXComment_Text Text=[::])))] |
Dmitri Gribenko | f303d4c | 2012-08-07 17:54:38 +0000 | [diff] [blame] | 849 | // CHECK: annotate-comments.cpp:356:6: FunctionDecl=comment_to_html_conversion_30:{{.*}} FullCommentAsHTML=[<p class="para-brief"> & < > "</p>] FullCommentAsXML=[<Function file="{{[^"]+}}annotate-comments.cpp" line="356" column="6"><Name>comment_to_html_conversion_30</Name><USR>c:@F@comment_to_html_conversion_30#</USR><Abstract><Para> & < > "</Para></Abstract></Function>] |
Dmitri Gribenko | 477a9f5 | 2012-07-27 20:37:06 +0000 | [diff] [blame] | 850 | // CHECK-NEXT: CommentAST=[ |
| 851 | // CHECK-NEXT: (CXComment_FullComment |
| 852 | // CHECK-NEXT: (CXComment_Paragraph |
| 853 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace) |
| 854 | // CHECK-NEXT: (CXComment_Text Text=[&]) |
| 855 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace) |
| 856 | // CHECK-NEXT: (CXComment_Text Text=[<]) |
| 857 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace) |
| 858 | // CHECK-NEXT: (CXComment_Text Text=[>]) |
| 859 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace) |
| 860 | // CHECK-NEXT: (CXComment_Text Text=["])))] |
Dmitri Gribenko | f303d4c | 2012-08-07 17:54:38 +0000 | [diff] [blame] | 861 | // CHECK: annotate-comments.cpp:359:6: FunctionDecl=comment_to_html_conversion_31:{{.*}} FullCommentAsHTML=[<p class="para-brief"> <em>0<i</em></p>] FullCommentAsXML=[<Function file="{{[^"]+}}annotate-comments.cpp" line="359" column="6"><Name>comment_to_html_conversion_31</Name><USR>c:@F@comment_to_html_conversion_31#</USR><Abstract><Para> <rawHTML><![CDATA[<em>]]></rawHTML>0<i<rawHTML></em></rawHTML></Para></Abstract></Function>] |
Dmitri Gribenko | 477a9f5 | 2012-07-27 20:37:06 +0000 | [diff] [blame] | 862 | // CHECK-NEXT: CommentAST=[ |
| 863 | // CHECK-NEXT: (CXComment_FullComment |
| 864 | // CHECK-NEXT: (CXComment_Paragraph |
| 865 | // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace) |
| 866 | // CHECK-NEXT: (CXComment_HTMLStartTag Name=[em]) |
| 867 | // CHECK-NEXT: (CXComment_Text Text=[0]) |
| 868 | // CHECK-NEXT: (CXComment_Text Text=[<]) |
| 869 | // CHECK-NEXT: (CXComment_Text Text=[i]) |
| 870 | // CHECK-NEXT: (CXComment_HTMLEndTag Name=[em])))] |
Dmitri Gribenko | ae99b75 | 2012-07-20 21:34:34 +0000 | [diff] [blame] | 871 | |
Dmitri Gribenko | f303d4c | 2012-08-07 17:54:38 +0000 | [diff] [blame] | 872 | // CHECK: annotate-comments.cpp:362:7: ClassDecl=comment_to_xml_conversion_01:{{.*}} FullCommentAsXML=[<Class file="{{[^"]+}}annotate-comments.cpp" line="362" column="7"><Name>comment_to_xml_conversion_01</Name><USR>c:@C@comment_to_xml_conversion_01</USR><Abstract><Para> Aaa.</Para></Abstract></Class>] |
| 873 | // CHECK: annotate-comments.cpp:364:3: CXXConstructor=comment_to_xml_conversion_01:{{.*}} FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments.cpp" line="364" 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><Parameters><Parameter><Name>aaa</Name><Index>0</Index><Direction isExplicit="0">in</Direction><Discussion><Para> Blah blah.</Para></Discussion></Parameter></Parameters></Function>] |
| 874 | // CHECK: annotate-comments.cpp:367:3: CXXDestructor=~comment_to_xml_conversion_01:{{.*}} FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments.cpp" line="367" column="3"><Name>~comment_to_xml_conversion_01</Name><USR>c:@C@comment_to_xml_conversion_01@F@~comment_to_xml_conversion_01#</USR><Abstract><Para> Aaa.</Para></Abstract></Function>] |
| 875 | // CHECK: annotate-comments.cpp:370:7: CXXMethod=comment_to_xml_conversion_02:{{.*}} FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments.cpp" line="370" 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><Parameters><Parameter><Name>aaa</Name><Index>0</Index><Direction isExplicit="0">in</Direction><Discussion><Para> Blah blah.</Para></Discussion></Parameter></Parameters></Function>] |
| 876 | // CHECK: annotate-comments.cpp:373:14: CXXMethod=comment_to_xml_conversion_03:{{.*}} FullCommentAsXML=[<Function isClassMethod="1" file="{{[^"]+}}annotate-comments.cpp" line="373" 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><Parameters><Parameter><Name>aaa</Name><Index>0</Index><Direction isExplicit="0">in</Direction><Discussion><Para> Blah blah.</Para></Discussion></Parameter></Parameters></Function>] |
| 877 | // CHECK: annotate-comments.cpp:376:7: FieldDecl=comment_to_xml_conversion_04:{{.*}} FullCommentAsXML=[<Variable file="{{[^"]+}}annotate-comments.cpp" line="376" column="7"><Name>comment_to_xml_conversion_04</Name><USR>c:@C@comment_to_xml_conversion_01@FI@comment_to_xml_conversion_04</USR><Abstract><Para> Aaa.</Para></Abstract></Variable>] |
| 878 | // CHECK: annotate-comments.cpp:379:14: VarDecl=comment_to_xml_conversion_05:{{.*}} FullCommentAsXML=[<Variable file="{{[^"]+}}annotate-comments.cpp" line="379" column="14"><Name>comment_to_xml_conversion_05</Name><USR>c:@C@comment_to_xml_conversion_01@comment_to_xml_conversion_05</USR><Abstract><Para> Aaa.</Para></Abstract></Variable>] |
| 879 | // CHECK: annotate-comments.cpp:382:8: CXXMethod=operator():{{.*}} FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments.cpp" line="382" column="8"><Name>operator()</Name><USR>c:@C@comment_to_xml_conversion_01@F@operator()#I#</USR><Parameters><Parameter><Name>aaa</Name><Index>0</Index><Direction isExplicit="0">in</Direction><Discussion><Para> Blah blah.</Para></Discussion></Parameter></Parameters></Function>] |
| 880 | // CHECK: annotate-comments.cpp:385:3: CXXConversion=operator _Bool:{{.*}} FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments.cpp" line="385" column="3"><Name>operator _Bool</Name><USR>c:@C@comment_to_xml_conversion_01@F@operator _Bool#</USR><Abstract><Para> Aaa.</Para></Abstract></Function>] |
| 881 | // CHECK: annotate-comments.cpp:388:15: TypedefDecl=comment_to_xml_conversion_06:{{.*}} FullCommentAsXML=[<Typedef file="{{[^"]+}}annotate-comments.cpp" line="388" column="15"><Name>comment_to_xml_conversion_06</Name><USR>c:annotate-comments.cpp@7933@C@comment_to_xml_conversion_01@T@comment_to_xml_conversion_06</USR><Abstract><Para> Aaa.</Para></Abstract></Typedef>] |
| 882 | // CHECK: annotate-comments.cpp:391:9: TypeAliasDecl=comment_to_xml_conversion_07:{{.*}} FullCommentAsXML=[<Typedef file="{{[^"]+}}annotate-comments.cpp" line="391" column="9"><Name>comment_to_xml_conversion_07</Name><USR>c:@C@comment_to_xml_conversion_01@comment_to_xml_conversion_07</USR><Abstract><Para> Aaa.</Para></Abstract></Typedef>] |
| 883 | // CHECK: annotate-comments.cpp:398:3: UnexposedDecl=comment_to_xml_conversion_09:{{.*}} FullCommentAsXML=[<Typedef file="{{[^"]+}}annotate-comments.cpp" line="398" column="3"><Name>comment_to_xml_conversion_09</Name><USR>c:@C@comment_to_xml_conversion_01@comment_to_xml_conversion_09</USR><Abstract><Para> Aaa.</Para></Abstract></Typedef>] |
| 884 | // CHECK: annotate-comments.cpp:403:6: FunctionTemplate=comment_to_xml_conversion_10:{{.*}} FullCommentAsXML=[<Function templateKind="template" file="{{[^"]+}}annotate-comments.cpp" line="403" column="6"><Name>comment_to_xml_conversion_10</Name><USR>c:@FT@>2#T#Tcomment_to_xml_conversion_10#t0.0#t0.1#</USR><Abstract><Para> Aaa.</Para></Abstract></Function>] |
| 885 | // CHECK: annotate-comments.cpp:407:6: FunctionDecl=comment_to_xml_conversion_10:{{.*}} FullCommentAsXML=[<Function templateKind="specialization" file="{{[^"]+}}annotate-comments.cpp" line="407" column="6"><Name>comment_to_xml_conversion_10</Name><USR>c:@F@comment_to_xml_conversion_10<#I#I>#I#I#</USR><Abstract><Para> Aaa.</Para></Abstract></Function>] |
| 886 | // CHECK: annotate-comments.cpp:411:7: ClassTemplate=comment_to_xml_conversion_11:{{.*}} FullCommentAsXML=[<Class templateKind="template" file="{{[^"]+}}annotate-comments.cpp" line="411" column="7"><Name>comment_to_xml_conversion_11</Name><USR>c:@CT>2#T#T@comment_to_xml_conversion_11</USR><Abstract><Para> Aaa.</Para></Abstract></Class>] |
| 887 | // CHECK: annotate-comments.cpp:415:7: ClassTemplatePartialSpecialization=comment_to_xml_conversion_11:{{.*}} FullCommentAsXML=[<Class templateKind="partialSpecialization" file="{{[^"]+}}annotate-comments.cpp" line="415" column="7"><Name>comment_to_xml_conversion_11</Name><USR>c:@CP>1#T@comment_to_xml_conversion_11>#t0.0#I</USR><Abstract><Para> Aaa.</Para></Abstract></Class>] |
| 888 | // CHECK: annotate-comments.cpp:419:7: ClassDecl=comment_to_xml_conversion_11:{{.*}} FullCommentAsXML=[<Class templateKind="specialization" file="{{[^"]+}}annotate-comments.cpp" line="419" column="7"><Name>comment_to_xml_conversion_11</Name><USR>c:@C@comment_to_xml_conversion_11>#I#I</USR><Abstract><Para> Aaa.</Para></Abstract></Class>] |
| 889 | // CHECK: annotate-comments.cpp:422:5: VarDecl=comment_to_xml_conversion_12:{{.*}} FullCommentAsXML=[<Variable file="{{[^"]+}}annotate-comments.cpp" line="422" column="5"><Name>comment_to_xml_conversion_12</Name><USR>c:@comment_to_xml_conversion_12</USR><Abstract><Para> Aaa.</Para></Abstract></Variable>] |
| 890 | // CHECK: annotate-comments.cpp:425:11: Namespace=comment_to_xml_conversion_13:{{.*}} FullCommentAsXML=[<Namespace file="{{[^"]+}}annotate-comments.cpp" line="425" column="11"><Name>comment_to_xml_conversion_13</Name><USR>c:@N@comment_to_xml_conversion_13</USR><Abstract><Para> Aaa.</Para></Abstract></Namespace>] |
| 891 | // CHECK: annotate-comments.cpp:427:13: Namespace=comment_to_xml_conversion_14:{{.*}} FullCommentAsXML=[<Namespace file="{{[^"]+}}annotate-comments.cpp" line="427" column="13"><Name>comment_to_xml_conversion_14</Name><USR>c:@N@comment_to_xml_conversion_13@N@comment_to_xml_conversion_14</USR><Abstract><Para> Aaa.</Para></Abstract></Namespace>] |
Dmitri Gribenko | dd7b803 | 2012-08-07 18:12:22 +0000 | [diff] [blame^] | 892 | // CHECK: annotate-comments.cpp:433:3: EnumConstantDecl=comment_to_xml_conversion_16:{{.*}} FullCommentAsXML=[<Variable file="{{[^"]+}}annotate-comments.cpp" line="433" column="3"><Name>comment_to_xml_conversion_16</Name><USR>c:@E@comment_to_xml_conversion_15@comment_to_xml_conversion_16</USR><Abstract><Para> Aaa.</Para></Abstract></Variable>] |