Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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()
164 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()
238 InlineContentComment(CommentKind K, in InlineContentComment()
376 HTMLTagComment(CommentKind K, in HTMLTagComment()
532 BlockContentComment(CommentKind K, in BlockContentComment()
613 BlockCommandComment(CommentKind K, in BlockCommandComment()
H A DDecl.h121 PragmaMSCommentKind CommentKind; variable
124 PragmaMSCommentKind CommentKind) in PragmaCommentDecl() argument
125 : Decl(PragmaComment, TU, CommentLoc), CommentKind(CommentKind) {} in PragmaCommentDecl()
132 PragmaMSCommentKind CommentKind,
137 PragmaMSCommentKind getCommentKind() const { return CommentKind; } in getCommentKind()
/netbsd-src/external/apache2/llvm/dist/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.cpp4743 PragmaMSCommentKind CommentKind, in Create() argument
4747 PragmaCommentDecl(DC, CommentLoc, CommentKind); in Create()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderDecl.cpp636 D->CommentKind = (PragmaMSCommentKind)Record.readInt(); in VisitPragmaCommentDecl()
H A DASTReader.cpp9092 RawComment::CommentKind Kind = in ReadComments()
9093 (RawComment::CommentKind) Record[Idx++]; in ReadComments()