summaryrefslogtreecommitdiff
path: root/clang/lib/AST/RawCommentList.cpp
AgeCommit message (Expand)Author
2025-06-26[clang] NFC: Add alias for std::pair<FileID, unsigned> used in SourceLocation...Haojian Wu
2025-02-10[AST] Avoid repeated hash lookups (NFC) (#126461)Kazu Hirata
2024-11-17[AST] Remove unused includes (NFC) (#116549)Kazu Hirata
2023-12-13[clang] Use StringRef::{starts,ends}_with (NFC) (#75149)Kazu Hirata
2022-03-16[clang][extract-api] Add global record supportZixu Wang
2020-04-06[clang] fix undefined behaviour in RawComment::getFormattedText()Oliver Bruns
2020-02-27Avoid SourceManager.h include in RawCommentList.h, add missing incsReid Kleckner
2019-08-13[clang] Refactor doc comments to Decls attributionJan Korous
2019-01-19Update the file headers across all of the LLVM projects in the monorepoChandler Carruth
2018-12-10Misc typos fixes in ./lib folderRaphael Isemann
2018-08-09Port getLocEnd -> getEndLocStephen Kelly
2018-08-09Port getLocStart -> getBeginLocStephen Kelly
2018-05-16[AST] Added a helper to extract a user-friendly text of a comment.Ilya Biryukov
2018-05-09Remove \brief commands from doxygen comments.Adrian Prantl
2018-03-02[NFC] Move CommentOpts checks to the call sites that depend on it. (Re-applyi...David L. Jones
2018-03-01Revert r326501 due to buildbot breakage.David L. Jones
2018-03-01[NFC] Move CommentOpts checks to the call sites that depend on it.David L. Jones
2016-10-16AST: Improve a couple of comments and cast unused values to voidJustin Bogner
2015-07-15Allow any comment to be a trailing comment when -fparse-all-comments is on.James Dennett
2014-03-27Comment parsing: when comment ranges are deserialized from multiple modules,Dmitri Gribenko
2014-03-02[C++11] Replace llvm::tie with std::tie.Benjamin Kramer
2013-09-28Refactor comment merging.Benjamin Kramer
2013-05-03[Doc parsing] Provide diagnostics for unknown documentation Fariborz Jahanian
2013-04-26Comment parsing: -fparse-all-comments: recognize empty line commentsDmitri Gribenko
2013-04-10Add an option to parse all comments as documentation commentsDmitri Gribenko
2012-12-04Sort all of Clang's files under 'lib', and fix up the broken headersChandler Carruth
2012-09-29Move the 'find macro by spelling' infrastructure to the Preprocessor class andDmitri Gribenko
2012-09-10Comment AST: TableGen'ize all command lists in CommentCommandTraits.cpp.Dmitri Gribenko
2012-09-09RawCommentList: don't copy the whole new RawComment to LastComment each time.Dmitri Gribenko
2012-08-31Remove the useless CommentOptions class.Dmitri Gribenko
2012-08-28Merging consecutive comments: be more conservative.Dmitri Gribenko
2012-08-14Attaching comments to redeclarations: fix wrong assumptionsDmitri Gribenko
2012-08-11Attaching comments to declarations: find comment attached to any redeclarationDmitri Gribenko
2012-08-09Comment parsing: extract TableGen'able pieces into new CommandTraits class.Dmitri Gribenko
2012-07-27Implement resolving of HTML character references (named: &amp;, decimal: &#42;,Dmitri Gribenko
2012-07-11Enable comment parsing and semantic analysis to emit diagnostics. A fewDmitri Gribenko
2012-07-06Don't store pointers into a std::vector (RawCommentList::Comments). AlthoughDmitri Gribenko
2012-07-04Renamed RawComment kinds to avoid name clash.Abramo Bagnara
2012-07-02Add a new libclang completion API to get brief documentation comment that isDmitri Gribenko
2012-06-27Initialize RawComment::BriefTextValid in other constructor, too.Dmitri Gribenko
2012-06-26Implement a lexer for structured comments.Dmitri Gribenko
2012-06-21Handle include directive with comments. It turns out that in this case comme...Dmitri Gribenko
2012-06-21VC9 does not like heterogenous compare function objects.Dmitri Gribenko
2012-06-21RawCommentList::addComment: fix the assertion so it actually checks that new ...Dmitri Gribenko
2012-06-20Remove unused ASTContext& arg in RawCommentList::addComment, as pointed out b...Dmitri Gribenko
2012-06-20Fix a big layering violation introduced by r158771.Chandler Carruth