Home
last modified time | relevance | path

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

/trueos/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>;
/trueos/contrib/llvm/tools/clang/include/clang/AST/
HDComment.h70 friend class InlineContentComment; variable
229 class InlineContentComment : public Comment {
231 InlineContentComment(CommentKind K, in InlineContentComment() function
254 class TextComment : public InlineContentComment {
261 InlineContentComment(TextCommentKind, LocBegin, LocEnd), in TextComment()
290 class InlineCommandComment : public InlineContentComment {
318 InlineContentComment(InlineCommandCommentKind, LocBegin, LocEnd), in InlineCommandComment()
365 class HTMLTagComment : public InlineContentComment {
376 InlineContentComment(K, LocBegin, LocEnd), in HTMLTagComment()
532 ArrayRef<InlineContentComment *> Content;
[all …]
HDCommentSema.h92 ArrayRef<InlineContentComment *> Content);
147 InlineContentComment *actOnUnknownCommand(SourceLocation LocBegin,
151 InlineContentComment *actOnUnknownCommand(SourceLocation LocBegin,
/trueos/contrib/llvm/tools/clang/lib/AST/
HDCommentSema.cpp45 ArrayRef<InlineContentComment *> Content) { in actOnParagraphComment()
394 InlineContentComment *Sema::actOnUnknownCommand(SourceLocation LocBegin, in actOnUnknownCommand()
401 InlineContentComment *Sema::actOnUnknownCommand(SourceLocation LocBegin, in actOnUnknownCommand()
HDCommentParser.cpp554 SmallVector<InlineContentComment *, 8> Content; in parseParagraphOrBlockCommand()