Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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()
179 RawComment(SourceRange SR, CommentKind K, bool IsTrailingComment, in RawComment()
H A DComment.h186 enum CommentKind { enum
202 Comment(CommentKind K, in Comment()
209 CommentKind getCommentKind() const { in getCommentKind()
210 return static_cast<CommentKind>(CommentBits.Kind); in getCommentKind()
243 InlineContentComment(CommentKind K, in InlineContentComment()
374 HTMLTagComment(CommentKind K, in HTMLTagComment()
524 BlockContentComment(CommentKind K, in BlockContentComment()
596 BlockCommandComment(CommentKind K, in BlockCommandComment()
H A DDecl.h145 PragmaMSCommentKind CommentKind; variable
148 PragmaMSCommentKind CommentKind) in PragmaCommentDecl() argument
149 : Decl(PragmaComment, TU, CommentLoc), CommentKind(CommentKind) {} in PragmaCommentDecl()
156 PragmaMSCommentKind CommentKind,
161 PragmaMSCommentKind getCommentKind() const { return CommentKind; } in getCommentKind()
/openbsd-src/gnu/llvm/clang/lib/AST/
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.cpp4968 PragmaMSCommentKind CommentKind, in Create() argument
4972 PragmaCommentDecl(DC, CommentLoc, CommentKind); in Create()
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTReaderDecl.cpp657 D->CommentKind = (PragmaMSCommentKind)Record.readInt(); in VisitPragmaCommentDecl()
H A DASTReader.cpp9207 RawComment::CommentKind Kind = in ReadComments()
9208 (RawComment::CommentKind) Record[Idx++]; in ReadComments()