Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DRawCommentList.h30 enum CommentKind { enum
46 CommentKind getKind() const LLVM_READONLY { in getKind()
47 return (CommentKind) Kind; in getKind()
160 RawComment(SourceRange SR, CommentKind K, bool IsTrailingComment, in RawComment()
H A DComment.h186 enum CommentKind { enum
197 Comment(CommentKind K, in Comment()
204 CommentKind getCommentKind() const { in getCommentKind()
205 return static_cast<CommentKind>(CommentBits.Kind); in getCommentKind()
240 InlineContentComment(CommentKind K, in InlineContentComment()
377 HTMLTagComment(CommentKind K, in HTMLTagComment()
533 BlockContentComment(CommentKind K, in BlockContentComment()
614 BlockCommandComment(CommentKind K, in BlockCommandComment()
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-12.1/contrib/llvm/tools/clang/lib/AST/
H A DRawCommentList.cpp25 std::pair<RawComment::CommentKind, bool> getCommentKind(StringRef Comment, in getCommentKind()
31 RawComment::CommentKind K; in getCommentKind()
104 static bool isOrdinaryKind(RawComment::CommentKind K) { in isOrdinaryKind()
121 std::pair<CommentKind, bool> K = in RawComment()
H A DDecl.cpp4317 PragmaMSCommentKind CommentKind, in Create() argument
4321 PragmaCommentDecl(DC, CommentLoc, CommentKind); in Create()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderDecl.cpp630 D->CommentKind = (PragmaMSCommentKind)Record.readInt(); in VisitPragmaCommentDecl()
H A DASTReader.cpp9184 RawComment::CommentKind Kind = in ReadComments()
9185 (RawComment::CommentKind) Record[Idx++]; in ReadComments()