Home
last modified time | relevance | path

Searched refs:CommentKind (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DRawCommentList.h34 enum CommentKind { enum
50 CommentKind getKind() const LLVM_READONLY { in getKind()
51 return (CommentKind) Kind; in getKind()
183 LLVM_PREFERRED_TYPE(CommentKind)
196 RawComment(SourceRange SR, CommentKind K, bool IsTrailingComment, in RawComment()
H A DDecl.h147 PragmaMSCommentKind CommentKind; variable
150 PragmaMSCommentKind CommentKind) in PragmaCommentDecl() argument
151 : Decl(PragmaComment, TU, CommentLoc), CommentKind(CommentKind) {} in PragmaCommentDecl()
158 PragmaMSCommentKind CommentKind,
163 PragmaMSCommentKind getCommentKind() const { return CommentKind; } in getCommentKind()
/freebsd/contrib/llvm-project/clang/lib/Index/
H A DCommentToXML.cpp107 case CommentKind::None: in FullCommentParts()
110 case CommentKind::ParagraphComment: { in FullCommentParts()
121 case CommentKind::BlockCommandComment: { in FullCommentParts()
144 case CommentKind::ParamCommandComment: { in FullCommentParts()
156 case CommentKind::TParamCommandComment: { in FullCommentParts()
168 case CommentKind::VerbatimBlockComment: in FullCommentParts()
172 case CommentKind::VerbatimLineComment: { in FullCommentParts()
180 case CommentKind::TextComment: in FullCommentParts()
181 case CommentKind::InlineCommandComment: in FullCommentParts()
182 case CommentKind::HTMLStartTagComment: in FullCommentParts()
[all …]
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDecl.cpp5280 PragmaMSCommentKind CommentKind, in Create() argument
5284 PragmaCommentDecl(DC, CommentLoc, CommentKind); in Create()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp680 D->CommentKind = (PragmaMSCommentKind)Record.readInt(); in VisitPragmaCommentDecl()
H A DASTReader.cpp9581 RawComment::CommentKind Kind = in ReadComments()
9582 (RawComment::CommentKind) Record[Idx++]; in ReadComments()