Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/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>;
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DComment.h70 friend class InlineContentComment; variable
238 class InlineContentComment : public Comment {
240 InlineContentComment(CommentKind K, in InlineContentComment() function
263 class TextComment : public InlineContentComment {
270 InlineContentComment(TextCommentKind, LocBegin, LocEnd), in TextComment()
299 class InlineCommandComment : public InlineContentComment {
327 InlineContentComment(InlineCommandCommentKind, LocBegin, LocEnd), in InlineCommandComment()
372 class HTMLTagComment : public InlineContentComment {
383 InlineContentComment(K, LocBegin, LocEnd), in HTMLTagComment()
548 ArrayRef<InlineContentComment *> Content;
[all …]
H A DCommentSema.h88 ArrayRef<InlineContentComment *> Content);
143 InlineContentComment *actOnUnknownCommand(SourceLocation LocBegin,
147 InlineContentComment *actOnUnknownCommand(SourceLocation LocBegin,
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DCommentSema.cpp46 ArrayRef<InlineContentComment *> Content) { in actOnParagraphComment()
397 InlineContentComment *Sema::actOnUnknownCommand(SourceLocation LocBegin, in actOnUnknownCommand()
404 InlineContentComment *Sema::actOnUnknownCommand(SourceLocation LocBegin, in actOnUnknownCommand()
H A DCommentParser.cpp554 SmallVector<InlineContentComment *, 8> Content; in parseParagraphOrBlockCommand()