1. f4030ae [doc parsing]: make single character command impostures warn in pedantic mode. by Fariborz Jahanian · 11 years ago
  2. 5cd4c41 [doc parsing]: So, in this patch, single character by Fariborz Jahanian · 11 years ago
  3. abbfa67 Turn off a warning caused by my last patch. by Fariborz Jahanian · 11 years ago
  4. 0089bc4 documentation parsing. Patch to do typo correction for by Fariborz Jahanian · 11 years ago
  5. efa78d1 [doc parsing]: Make warning about unknown command by Fariborz Jahanian · 11 years ago
  6. ad6fd9f [Doc parsing] Provide diagnostics for unknown documentation by Fariborz Jahanian · 11 years ago
  7. 808383d Comment parsing: refactor handling of command markers in AST by Dmitri Gribenko · 12 years ago
  8. 8536fa1 Some refactoring in my patch on document by Fariborz Jahanian · 12 years ago
  9. c98e913 comment parsing. Keep the original command format by Fariborz Jahanian · 12 years ago
  10. 0ff4f8b Use static functions instead of an unnamed namespace by Dmitri Gribenko · 12 years ago
  11. bf88144 Comment parsing: use CharInfo.h by Dmitri Gribenko · 12 years ago
  12. 5bd1e5b Comment parsing: resolve more named character references by Dmitri Gribenko · 12 years ago
  13. cb5620c Move UTF conversion routines from clang/lib/Basic to llvm/lib/Support by Dmitri Gribenko · 12 years ago
  14. 4b1a0e4 Removed couple of html named character references in my last patch. by Fariborz Jahanian · 12 years ago
  15. 658a115 [Doc parsing] Patch to parse Doxygen-supported HTML character by Fariborz Jahanian · 12 years ago
  16. c934dfe Use llvm::hexDigitValue in comment lexer by Dmitri Gribenko · 12 years ago
  17. aa7dbaf Comment lexing: replace manual comparison with StringRef::find_first_of by Dmitri Gribenko · 12 years ago
  18. 8c05da3 Comment parsing: don't parse comment marker followed by a digit as a command by Dmitri Gribenko · 12 years ago
  19. e4330a3 Comment AST: TableGen'ize all command lists in CommentCommandTraits.cpp. by Dmitri Gribenko · 12 years ago
  20. af503a6 Remove the useless CommentOptions class. by Dmitri Gribenko · 12 years ago
  21. c24a76e Comment HTML tag name machers: move from StringSwitch to an efficient by Dmitri Gribenko · 12 years ago
  22. 834a5bd Comment parsing: parse "<blah" as an HTML tag only if "blah" is a known tag by Dmitri Gribenko · 12 years ago
  23. aa58081 Comment parsing: extract TableGen'able pieces into new CommandTraits class. by Dmitri Gribenko · 12 years ago
  24. 477a9f5 Implement resolving of HTML character references (named: &amp;, decimal: &#42;, by Dmitri Gribenko · 12 years ago
  25. 64da4e5 Comment parsing: don't parse whitespace before \endverbatim as a separate line of whitespace. by Dmitri Gribenko · 12 years ago
  26. 3f38bf2 Comment parsing: repaint the bikesched: rename 'HTML open tags' to 'HTML start tags' and 'HTML close tags' to 'HTML end tags' according to HTML spec. by Dmitri Gribenko · 12 years ago
  27. a5ef44f Enable comment parsing and semantic analysis to emit diagnostics. A few by Dmitri Gribenko · 12 years ago
  28. a99ec10 Comment lexing: fix lexing to actually work in non-error cases. by Dmitri Gribenko · 12 years ago
  29. 8d3ba23 Implement AST classes for comments, a real parser for Doxygen comments and a by Dmitri Gribenko · 12 years ago
  30. 5676d32 Fix an infinite loop in comment lexer: we were not advancing in the input character stream when we saw a '<' that is not a start of an HTML tag. by Dmitri Gribenko · 12 years ago
  31. 962668d Remove unsigned and a pointer from a comment token (so that each token can have only one semantic string value attached to it), at a cost of adding an additional token. by Dmitri Gribenko · 12 years ago
  32. f5e0aea Comment lexer: counting backwards from token end is thought to be confusing. We already have a pointer to the beginning of the token, so use it to extract the text instead. by Dmitri Gribenko · 12 years ago
  33. 2d44d77 Implement a lexer for structured comments. by Dmitri Gribenko · 12 years ago