Home
last modified time | relevance | path

Searched refs:InlineCommandComment (Results 1 – 9 of 9) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DCommentSema.cpp367 ArrayRef<InlineCommandComment::Argument> Args; in actOnInlineCommand()
369 return new (Allocator) InlineCommandComment( in actOnInlineCommand()
383 typedef InlineCommandComment::Argument Argument; in actOnInlineCommand()
389 return new (Allocator) InlineCommandComment( in actOnInlineCommand()
407 ArrayRef<InlineCommandComment::Argument> Args; in actOnUnknownCommand()
408 return new (Allocator) InlineCommandComment( in actOnUnknownCommand()
1115 InlineCommandComment::RenderKind
1119 return llvm::StringSwitch<InlineCommandComment::RenderKind>(Name) in getInlineCommandRenderKind()
1120 .Case("b", InlineCommandComment::RenderBold) in getInlineCommandRenderKind()
1121 .Cases("c", "p", InlineCommandComment::RenderMonospaced) in getInlineCommandRenderKind()
[all …]
H A DTextNodeDumper.cpp452 const comments::InlineCommandComment *C, const comments::FullComment *) { in visitInlineCommandComment()
455 case comments::InlineCommandComment::RenderNormal: in visitInlineCommandComment()
458 case comments::InlineCommandComment::RenderBold: in visitInlineCommandComment()
461 case comments::InlineCommandComment::RenderMonospaced: in visitInlineCommandComment()
464 case comments::InlineCommandComment::RenderEmphasized: in visitInlineCommandComment()
H A DCommentParser.cpp403 InlineCommandComment *Parser::parseInlineCommand() { in parseInlineCommand()
414 InlineCommandComment *IC; in parseInlineCommand()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Index/
H A DCommentToXML.cpp231 void visitInlineCommandComment(const InlineCommandComment *C);
279 case InlineCommandComment::RenderNormal: in visitInlineCommandComment()
286 case InlineCommandComment::RenderBold: in visitInlineCommandComment()
292 case InlineCommandComment::RenderMonospaced: in visitInlineCommandComment()
298 case InlineCommandComment::RenderEmphasized: in visitInlineCommandComment()
538 void visitInlineCommandComment(const InlineCommandComment *C);
613 const InlineCommandComment *C) { in visitInlineCommandComment()
624 case InlineCommandComment::RenderNormal: in visitInlineCommandComment()
630 case InlineCommandComment::RenderBold: in visitInlineCommandComment()
636 case InlineCommandComment::RenderMonospaced: in visitInlineCommandComment()
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DCommentSema.h132 InlineCommandComment *actOnInlineCommand(SourceLocation CommandLocBegin,
136 InlineCommandComment *actOnInlineCommand(SourceLocation CommandLocBegin,
250 InlineCommandComment::RenderKind
H A DCommentParser.h106 InlineCommandComment *parseInlineCommand();
H A DComment.h94 friend class InlineCommandComment; variable
299 class InlineCommandComment : public InlineContentComment {
322 InlineCommandComment(SourceLocation LocBegin, in InlineCommandComment() function
H A DTextNodeDumper.h189 void visitInlineCommandComment(const comments::InlineCommandComment *C,
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DCommentNodes.td11 def InlineCommandComment : DComment<InlineContentComment>;