Home
last modified time | relevance | path

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

/minix3/external/bsd/llvm/dist/clang/include/clang/Basic/
H A DCommentNodes.td9 def InlineContentComment : Comment<1>;
10 def TextComment : DComment<InlineContentComment>;
11 def InlineCommandComment : DComment<InlineContentComment>;
12 def HTMLTagComment : DComment<InlineContentComment, 1>;
/minix3/external/bsd/llvm/dist/clang/include/clang/AST/
H A 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 …]
H A DCommentSema.h92 ArrayRef<InlineContentComment *> Content);
147 InlineContentComment *actOnUnknownCommand(SourceLocation LocBegin,
151 InlineContentComment *actOnUnknownCommand(SourceLocation LocBegin,
/minix3/external/bsd/llvm/dist/clang/tools/libclang/
H A DCXComment.cpp124 const InlineContentComment *ICC = getASTNodeAs<InlineContentComment>(CXC); in clang_InlineContentComment_hasTrailingNewline()
/minix3/external/bsd/llvm/dist/clang/lib/AST/
H A DCommentSema.cpp46 ArrayRef<InlineContentComment *> Content) { in actOnParagraphComment()
399 InlineContentComment *Sema::actOnUnknownCommand(SourceLocation LocBegin, in actOnUnknownCommand()
406 InlineContentComment *Sema::actOnUnknownCommand(SourceLocation LocBegin, in actOnUnknownCommand()
H A DCommentParser.cpp554 SmallVector<InlineContentComment *, 8> Content; in parseParagraphOrBlockCommand()