aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/AST/CommentLexer.cpp
AgeCommit message (Expand)AuthorFilesLines
2016-10-25Fix 'unknown documentation command' warning rangesErik Verbruggen1-4/+6
2016-02-10Fix some Clang-tidy readability-redundant-control-flow warnings; other minor ...Eugene Zelenko1-5/+11
2015-04-15Comment parsing: fix an assertion failure on a verbatim block terminated with...Dmitri Gribenko1-0/+6
2014-08-30Fix some cases where StringRef was being passed by const reference. Remove co...Craig Topper1-2/+2
2013-12-07CommentLexer: eliminate an NDEBUG from the headersAlp Toker1-0/+13
2013-12-01CommentLexer: When proceeding with a typo corrected name don't clobber the to...Benjamin Kramer1-5/+6
2013-08-23Fix indentationDmitri Gribenko1-1/+1
2013-05-09[doc parsing]: make single character command imposturesFariborz Jahanian1-4/+0
2013-05-09[doc parsing]: So, in this patch, single characterFariborz Jahanian1-0/+4
2013-05-08Turn off a warning caused by my last patch.Fariborz Jahanian1-1/+1
2013-05-08documentation parsing. Patch to do typo correction for Fariborz Jahanian1-2/+12
2013-05-04[doc parsing]: Make warning about unknown commandFariborz Jahanian1-3/+2
2013-05-03[Doc parsing] Provide diagnostics for unknown documentation Fariborz Jahanian1-2/+6
2013-03-04Comment parsing: refactor handling of command markers in ASTDmitri Gribenko1-4/+6
2013-03-02Some refactoring in my patch on documentFariborz Jahanian1-2/+4
2013-03-01comment parsing. Keep the original command format Fariborz Jahanian1-0/+1
2013-02-10Use static functions instead of an unnamed namespaceDmitri Gribenko1-6/+8
2013-02-09Comment parsing: use CharInfo.hDmitri Gribenko1-38/+16
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