summaryrefslogtreecommitdiffstats
path: root/lib/AST/CommentLexer.cpp
Commit message (Expand)AuthorAgeFilesLines
* Update the file headers across all of the LLVM projects in the monorepoChandler Carruth2019-01-191-4/+3
* Add a newline to SourceLocation dump outputStephen Kelly2018-08-151-1/+1
* Remove trailing spaceFangrui Song2018-07-301-1/+1
* [AST] Added a helper to extract a user-friendly text of a comment.Ilya Biryukov2018-05-161-117/+129
* Fix 'unknown documentation command' warning rangesErik Verbruggen2016-10-251-4/+6
* Fix some Clang-tidy readability-redundant-control-flow warnings; other minor ...Eugene Zelenko2016-02-101-5/+11
* Comment parsing: fix an assertion failure on a verbatim block terminated with...Dmitri Gribenko2015-04-151-0/+6
* Fix some cases where StringRef was being passed by const reference. Remove co...Craig Topper2014-08-301-2/+2
* CommentLexer: eliminate an NDEBUG from the headersAlp Toker2013-12-071-0/+13
* CommentLexer: When proceeding with a typo corrected name don't clobber the to...Benjamin Kramer2013-12-011-5/+6
* Fix indentationDmitri Gribenko2013-08-231-1/+1
* [doc parsing]: make single character command imposturesFariborz Jahanian2013-05-091-4/+0
* [doc parsing]: So, in this patch, single characterFariborz Jahanian2013-05-091-0/+4
* Turn off a warning caused by my last patch.Fariborz Jahanian2013-05-081-1/+1
* documentation parsing. Patch to do typo correction for Fariborz Jahanian2013-05-081-2/+12
* [doc parsing]: Make warning about unknown commandFariborz Jahanian2013-05-041-3/+2
* [Doc parsing] Provide diagnostics for unknown documentation Fariborz Jahanian2013-05-031-2/+6
* Comment parsing: refactor handling of command markers in ASTDmitri Gribenko2013-03-041-4/+6
* Some refactoring in my patch on documentFariborz Jahanian2013-03-021-2/+4
* comment parsing. Keep the original command format Fariborz Jahanian2013-03-011-0/+1
* Use static functions instead of an unnamed namespaceDmitri Gribenko2013-02-101-6/+8
* Comment parsing: use CharInfo.hDmitri Gribenko2013-02-091-38/+16
* Comment parsing: resolve more named character referencesDmitri Gribenko2013-01-301-182/+22
* Move UTF conversion routines from clang/lib/Basic to llvm/lib/SupportDmitri Gribenko2013-01-301-3/+3
* Removed couple of html named character references inFariborz Jahanian2013-01-301-2/+0
* [Doc parsing] Patch to parse Doxygen-supported HTML character Fariborz Jahanian2013-01-291-18/+181
* Use llvm::hexDigitValue in comment lexerDmitri Gribenko2013-01-191-6/+2
* Comment lexing: replace manual comparison with StringRef::find_first_ofDmitri Gribenko2012-12-301-9/+6
* Comment parsing: don't parse comment marker followed by a digit as a commandDmitri Gribenko2012-09-141-1/+6
* Comment AST: TableGen'ize all command lists in CommentCommandTraits.cpp.Dmitri Gribenko2012-09-101-14/+21
* Remove the useless CommentOptions class.Dmitri Gribenko2012-08-311-2/+2
* Comment HTML tag name machers: move from StringSwitch to an efficientDmitri Gribenko2012-08-311-26/+2
* Comment parsing: parse "<blah" as an HTML tag only if "blah" is a known tagDmitri Gribenko2012-08-221-2/+38
* Comment parsing: extract TableGen'able pieces into new CommandTraits class.Dmitri Gribenko2012-08-091-93/+5
* Implement resolving of HTML character references (named: &amp;, decimal: &#42;,Dmitri Gribenko2012-07-271-24/+174
* Comment parsing: don't parse whitespace before \endverbatim as a separate lin...Dmitri Gribenko2012-07-181-0/+10
* Comment parsing: repaint the bikesched: rename 'HTML open tags' to 'HTML star...Dmitri Gribenko2012-07-131-17/+17
* Enable comment parsing and semantic analysis to emit diagnostics. A fewDmitri Gribenko2012-07-111-1/+13
* Comment lexing: fix lexing to actually work in non-error cases.Dmitri Gribenko2012-07-091-13/+18
* Implement AST classes for comments, a real parser for Doxygen comments and aDmitri Gribenko2012-07-061-8/+36
* Fix an infinite loop in comment lexer: we were not advancing in the input cha...Dmitri Gribenko2012-06-271-0/+5
* Remove unsigned and a pointer from a comment token (so that each token can ha...Dmitri Gribenko2012-06-271-8/+19
* Comment lexer: counting backwards from token end is thought to be confusing. ...Dmitri Gribenko2012-06-271-14/+20
* Implement a lexer for structured comments.Dmitri Gribenko2012-06-261-0/+676