Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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>;
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DComment.h69 friend class InlineContentComment; variable
236 class InlineContentComment : public Comment {
238 InlineContentComment(CommentKind K, in InlineContentComment() function
261 class TextComment : public InlineContentComment {
268 InlineContentComment(TextCommentKind, LocBegin, LocEnd), in TextComment()
297 class InlineCommandComment : public InlineContentComment {
326 InlineContentComment(InlineCommandCommentKind, LocBegin, LocEnd), in InlineCommandComment()
371 class HTMLTagComment : public InlineContentComment {
382 InlineContentComment(K, LocBegin, LocEnd), in HTMLTagComment()
547 ArrayRef<InlineContentComment *> Content;
[all …]
H A DCommentSema.h87 ArrayRef<InlineContentComment *> Content);
142 InlineContentComment *actOnUnknownCommand(SourceLocation LocBegin,
146 InlineContentComment *actOnUnknownCommand(SourceLocation LocBegin,
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCXComment.cpp120 const InlineContentComment *ICC = getASTNodeAs<InlineContentComment>(CXC); in clang_InlineContentComment_hasTrailingNewline()
/netbsd-src/external/apache2/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.cpp559 SmallVector<InlineContentComment *, 8> Content; in parseParagraphOrBlockCommand()