Searched refs:InlineContentComment (Results 1 – 6 of 6) sorted by relevance
/external/clang/include/clang/Basic/ |
D | CommentNodes.td | 9 def InlineContentComment : Comment<1>; 10 def TextComment : DComment<InlineContentComment>; 11 def InlineCommandComment : DComment<InlineContentComment>; 12 def HTMLTagComment : DComment<InlineContentComment, 1>;
|
/external/clang/include/clang/AST/ |
D | Comment.h | 49 friend class InlineContentComment; variable 205 class InlineContentComment : public Comment { 207 InlineContentComment(CommentKind K, in InlineContentComment() function 220 static bool classof(const InlineContentComment *) { return true; } in classof() argument 232 class TextComment : public InlineContentComment { 239 InlineContentComment(TextCommentKind, LocBegin, LocEnd), in TextComment() 270 class InlineCommandComment : public InlineContentComment { 298 InlineContentComment(InlineCommandCommentKind, LocBegin, LocEnd), in InlineCommandComment() 347 class HTMLTagComment : public InlineContentComment { 358 InlineContentComment(K, LocBegin, LocEnd), in HTMLTagComment() [all …]
|
D | CommentSema.h | 88 ArrayRef<InlineContentComment *> Content); 140 InlineContentComment *actOnUnknownCommand(SourceLocation LocBegin,
|
/external/clang/lib/AST/ |
D | CommentParser.cpp | 338 ArrayRef<InlineContentComment *>()); in parseBlockCommand() 533 SmallVector<InlineContentComment *, 8> Content; in parseParagraphOrBlockCommand()
|
D | CommentSema.cpp | 41 ArrayRef<InlineContentComment *> Content) { in actOnParagraphComment() 273 InlineContentComment *Sema::actOnUnknownCommand(SourceLocation LocBegin, in actOnUnknownCommand()
|
/external/clang/tools/libclang/ |
D | CXComment.cpp | 115 const InlineContentComment *ICC = getASTNodeAs<InlineContentComment>(CXC); in clang_InlineContentComment_hasTrailingNewline()
|