Home
last modified time | relevance | path

Searched refs:InlineContentComment (Results 1 – 6 of 6) sorted by relevance

/external/clang/include/clang/Basic/
DCommentNodes.td9 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/
DComment.h70 friend class InlineContentComment; variable
242 class InlineContentComment : public Comment {
244 InlineContentComment(CommentKind K, in InlineContentComment() function
267 class TextComment : public InlineContentComment {
274 InlineContentComment(TextCommentKind, LocBegin, LocEnd), in TextComment()
303 class InlineCommandComment : public InlineContentComment {
331 InlineContentComment(InlineCommandCommentKind, LocBegin, LocEnd), in InlineCommandComment()
377 class HTMLTagComment : public InlineContentComment {
388 InlineContentComment(K, LocBegin, LocEnd), in HTMLTagComment()
553 ArrayRef<InlineContentComment *> Content;
[all …]
DCommentSema.h88 ArrayRef<InlineContentComment *> Content);
143 InlineContentComment *actOnUnknownCommand(SourceLocation LocBegin,
147 InlineContentComment *actOnUnknownCommand(SourceLocation LocBegin,
/external/clang/tools/libclang/
DCXComment.cpp124 const InlineContentComment *ICC = getASTNodeAs<InlineContentComment>(CXC); in clang_InlineContentComment_hasTrailingNewline()
/external/clang/lib/AST/
DCommentSema.cpp46 ArrayRef<InlineContentComment *> Content) { in actOnParagraphComment()
397 InlineContentComment *Sema::actOnUnknownCommand(SourceLocation LocBegin, in actOnUnknownCommand()
404 InlineContentComment *Sema::actOnUnknownCommand(SourceLocation LocBegin, in actOnUnknownCommand()
DCommentParser.cpp554 SmallVector<InlineContentComment *, 8> Content; in parseParagraphOrBlockCommand()