Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DCommentNodes.td9 def InlineContentComment : CommentNode<Comment, 1>;
10 def TextComment : CommentNode<InlineContentComment>;
11 def InlineCommandComment : CommentNode<InlineContentComment>;
12 def HTMLTagComment : CommentNode<InlineContentComment, 1>;
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DComment.h69 friend class InlineContentComment; variable
241 class InlineContentComment : public Comment {
243 InlineContentComment(CommentKind K, in InlineContentComment() function
266 class TextComment : public InlineContentComment {
273 InlineContentComment(TextCommentKind, LocBegin, LocEnd), in TextComment()
302 class InlineCommandComment : public InlineContentComment {
324 InlineContentComment(InlineCommandCommentKind, LocBegin, LocEnd), in InlineCommandComment()
369 class HTMLTagComment : public InlineContentComment {
380 InlineContentComment(K, LocBegin, LocEnd), in HTMLTagComment()
539 ArrayRef<InlineContentComment *> Content;
[all …]
H A DCommentSema.h87 ArrayRef<InlineContentComment *> Content);
136 InlineContentComment *actOnUnknownCommand(SourceLocation LocBegin,
140 InlineContentComment *actOnUnknownCommand(SourceLocation LocBegin,
/openbsd-src/gnu/llvm/clang/tools/libclang/
H A DCXComment.cpp120 const InlineContentComment *ICC = getASTNodeAs<InlineContentComment>(CXC); in clang_InlineContentComment_hasTrailingNewline()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DCommentSema.cpp46 ArrayRef<InlineContentComment *> Content) { in actOnParagraphComment()
371 InlineContentComment *Sema::actOnUnknownCommand(SourceLocation LocBegin, in actOnUnknownCommand()
378 InlineContentComment *Sema::actOnUnknownCommand(SourceLocation LocBegin, in actOnUnknownCommand()
H A DCommentParser.cpp544 SmallVector<InlineContentComment *, 8> Content; in parseParagraphOrBlockCommand()