Home
last modified time | relevance | path

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

/src/contrib/llvm-project/clang/include/clang/AST/
H A DComment.h52 enum class CommentKind { enum
77 LLVM_PREFERRED_TYPE(CommentKind)
226 Comment(CommentKind K,
233 CommentKind getCommentKind() const {
234 return static_cast<CommentKind>(CommentBits.Kind);
267 InlineContentComment(CommentKind K,
277 CommentKind::FirstInlineContentCommentConstant &&
278 C->getCommentKind() <= CommentKind::LastInlineContentCommentConstant;
296 : InlineContentComment(CommentKind::TextComment, LocBegin, LocEnd),
302 return C->getCommentKind() == CommentKind::TextComment;
[all …]
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 DCommentVisitor.h35 case CommentKind::CLASS: \ in visit()
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()
/src/contrib/llvm-project/clang/lib/AST/
H A DComment.cpp37 case CommentKind::None: in getCommentKindName()
41 case CommentKind::CLASS: \ in getCommentKindName()
85 case CommentKind::None: in child_begin()
89 case CommentKind::CLASS: \ in child_begin()
100 case CommentKind::None: in child_end()
104 case CommentKind::CLASS: \ in child_end()
H A DRawCommentList.cpp26 std::pair<RawComment::CommentKind, bool> getCommentKind(StringRef Comment, in getCommentKind()
32 RawComment::CommentKind K; in getCommentKind()
105 static bool isOrdinaryKind(RawComment::CommentKind K) { in isOrdinaryKind()
122 std::pair<CommentKind, bool> K = in RawComment()
H A DDecl.cpp5280 PragmaMSCommentKind CommentKind, in Create() argument
5284 PragmaCommentDecl(DC, CommentLoc, CommentKind); in Create()
/src/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 …]
/src/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp680 D->CommentKind = (PragmaMSCommentKind)Record.readInt(); in VisitPragmaCommentDecl()
H A DASTReader.cpp9636 RawComment::CommentKind Kind = in ReadComments()
9637 (RawComment::CommentKind) Record[Idx++]; in ReadComments()