aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/AST/CommentLexer.cpp
AgeCommit message (Expand)AuthorFilesLines
2013-01-30Comment parsing: resolve more named character referencesDmitri Gribenko1-182/+22
2013-01-30Move UTF conversion routines from clang/lib/Basic to llvm/lib/SupportDmitri Gribenko1-3/+3
2013-01-30Removed couple of html named character references inFariborz Jahanian1-2/+0
2013-01-29[Doc parsing] Patch to parse Doxygen-supported HTML character Fariborz Jahanian1-18/+181
2013-01-19Use llvm::hexDigitValue in comment lexerDmitri Gribenko1-6/+2
2012-12-30Comment lexing: replace manual comparison with StringRef::find_first_ofDmitri Gribenko1-9/+6
2012-09-14Comment parsing: don't parse comment marker followed by a digit as a commandDmitri Gribenko1-1/+6
2012-09-10Comment AST: TableGen'ize all command lists in CommentCommandTraits.cpp.Dmitri Gribenko1-14/+21
2012-08-31Remove the useless CommentOptions class.Dmitri Gribenko1-2/+2
2012-08-31Comment HTML tag name machers: move from StringSwitch to an efficientDmitri Gribenko1-26/+2
2012-08-22Comment parsing: parse "<blah" as an HTML tag only if "blah" is a known tagDmitri Gribenko1-2/+38
2012-08-09Comment parsing: extract TableGen'able pieces into new CommandTraits class.Dmitri Gribenko1-93/+5
2012-07-27Implement resolving of HTML character references (named: &amp;, decimal: &#42;,Dmitri Gribenko1-24/+174
2012-07-18Comment parsing: don't parse whitespace before \endverbatim as a separate lin...Dmitri Gribenko1-0/+10
2012-07-13Comment parsing: repaint the bikesched: rename 'HTML open tags' to 'HTML star...Dmitri Gribenko1-17/+17
2012-07-11Enable comment parsing and semantic analysis to emit diagnostics. A fewDmitri Gribenko1-1/+13
2012-07-09Comment lexing: fix lexing to actually work in non-error cases.Dmitri Gribenko1-13/+18
2012-07-06Implement AST classes for comments, a real parser for Doxygen comments and aDmitri Gribenko1-8/+36
2012-06-27Fix an infinite loop in comment lexer: we were not advancing in the input cha...Dmitri Gribenko1-0/+5
2012-06-27Remove unsigned and a pointer from a comment token (so that each token can ha...Dmitri Gribenko1-8/+19
2012-06-27Comment lexer: counting backwards from token end is thought to be confusing. ...Dmitri Gribenko1-14/+20
2012-06-26Implement a lexer for structured comments.Dmitri Gribenko1-0/+676