Home
last modified time | relevance | path

Searched refs:CommentOpts (Results 1 – 10 of 10) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DRawCommentList.cpp110 const CommentOptions &CommentOpts, bool Merged) : in RawComment() argument
122 getCommentKind(RawText, CommentOpts.ParseAllComments); in RawComment()
125 if (CommentOpts.ParseAllComments && isOrdinaryKind(K.first)) { in RawComment()
274 const CommentOptions &CommentOpts, in addComment() argument
289 if (RC.isOrdinary() && !CommentOpts.ParseAllComments) in addComment()
322 *Comments.back() = RawComment(SourceMgr, MergedRange, CommentOpts, true); in addComment()
H A DASTContext.cpp230 SourceMgr, SourceRange(DeclLoc), LangOpts.CommentOpts, false); in getRawCommentForDeclNoCache()
256 ((*Comment)->isDocumentation() || LangOpts.CommentOpts.ParseAllComments) in getRawCommentForDeclNoCache()
280 LangOpts.CommentOpts.ParseAllComments) || in getRawCommentForDeclNoCache()
433 assert(!RC || RC->isDocumentation() || LangOpts.CommentOpts.ParseAllComments); in getRawCommentForAnyRedecl()
796 CommentCommandTraits(BumpAlloc, LOpts.CommentOpts), in ASTContext()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DRawCommentList.h44 const CommentOptions &CommentOpts, bool Merged);
197 void addComment(const RawComment &RC, const CommentOptions &CommentOpts,
H A DASTContext.h806 Comments.addComment(RC, LangOpts.CommentOpts, BumpAlloc); in addComment()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DLangOptions.h236 CommentOptions CommentOpts; variable
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSema.cpp1588 RawComment RC(SourceMgr, Comment, LangOpts.CommentOpts, false); in ActOnComment()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTWriter.cpp1597 Record.push_back(LangOpts.CommentOpts.BlockCommandNames.size()); in WriteControlBlock()
1598 for (const auto &I : LangOpts.CommentOpts.BlockCommandNames) { in WriteControlBlock()
1601 Record.push_back(LangOpts.CommentOpts.ParseAllComments); in WriteControlBlock()
H A DASTReader.cpp325 if (ExistingLangOpts.CommentOpts.BlockCommandNames != in checkLanguageOptions()
326 LangOpts.CommentOpts.BlockCommandNames) { in checkLanguageOptions()
5263 LangOpts.CommentOpts.BlockCommandNames.push_back( in ParseLanguageOptions()
5266 LangOpts.CommentOpts.ParseAllComments = Record[Idx++]; in ParseLanguageOptions()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/
H A DASTUnit.cpp607 LangOpt.CommentOpts); in updated()
H A DCompilerInvocation.cpp3268 ParseCommentArgs(LangOpts.CommentOpts, Args); in CreateFromArgs()