Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/clang/include/clang/Basic/
HDCommentNodes.td9 def InlineContentComment : Comment<1>;
10 def TextComment : DComment<InlineContentComment>;
11 def InlineCommandComment : DComment<InlineContentComment>;
12 def HTMLTagComment : DComment<InlineContentComment, 1>;
/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDComment.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 …]
HDCommentSema.h92 ArrayRef<InlineContentComment *> Content);
147 InlineContentComment *actOnUnknownCommand(SourceLocation LocBegin,
151 InlineContentComment *actOnUnknownCommand(SourceLocation LocBegin,
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDCommentSema.cpp46 ArrayRef<InlineContentComment *> Content) { in actOnParagraphComment()
399 InlineContentComment *Sema::actOnUnknownCommand(SourceLocation LocBegin, in actOnUnknownCommand()
406 InlineContentComment *Sema::actOnUnknownCommand(SourceLocation LocBegin, in actOnUnknownCommand()
HDCommentParser.cpp554 SmallVector<InlineContentComment *, 8> Content; in parseParagraphOrBlockCommand()