Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCXComment.cpp136 const InlineCommandComment *ICC = getASTNodeAs<InlineCommandComment>(CXC); in clang_InlineCommandComment_getCommandName()
146 const InlineCommandComment *ICC = getASTNodeAs<InlineCommandComment>(CXC); in clang_InlineCommandComment_getRenderKind()
151 case InlineCommandComment::RenderNormal: in clang_InlineCommandComment_getRenderKind()
154 case InlineCommandComment::RenderBold: in clang_InlineCommandComment_getRenderKind()
157 case InlineCommandComment::RenderMonospaced: in clang_InlineCommandComment_getRenderKind()
160 case InlineCommandComment::RenderEmphasized: in clang_InlineCommandComment_getRenderKind()
163 case InlineCommandComment::RenderAnchor: in clang_InlineCommandComment_getRenderKind()
170 const InlineCommandComment *ICC = getASTNodeAs<InlineCommandComment>(CXC); in clang_InlineCommandComment_getNumArgs()
179 const InlineCommandComment *ICC = getASTNodeAs<InlineCommandComment>(CXC); in clang_InlineCommandComment_getArgText()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Index/
H A DCommentToXML.cpp229 void visitInlineCommandComment(const InlineCommandComment *C);
266 const InlineCommandComment *C) { in visitInlineCommandComment()
277 case InlineCommandComment::RenderNormal: in visitInlineCommandComment()
284 case InlineCommandComment::RenderBold: in visitInlineCommandComment()
290 case InlineCommandComment::RenderMonospaced: in visitInlineCommandComment()
296 case InlineCommandComment::RenderEmphasized: in visitInlineCommandComment()
302 case InlineCommandComment::RenderAnchor: in visitInlineCommandComment()
540 void visitInlineCommandComment(const InlineCommandComment *C);
615 const InlineCommandComment *C) { in visitInlineCommandComment()
626 case InlineCommandComment::RenderNormal: in visitInlineCommandComment()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DCommentSema.cpp366 InlineCommandComment *Sema::actOnInlineCommand(SourceLocation CommandLocBegin, in actOnInlineCommand()
369 ArrayRef<InlineCommandComment::Argument> Args; in actOnInlineCommand()
371 return new (Allocator) InlineCommandComment( in actOnInlineCommand()
379 InlineCommandComment *Sema::actOnInlineCommand(SourceLocation CommandLocBegin, in actOnInlineCommand()
385 typedef InlineCommandComment::Argument Argument; in actOnInlineCommand()
391 return new (Allocator) InlineCommandComment( in actOnInlineCommand()
409 ArrayRef<InlineCommandComment::Argument> Args; in actOnUnknownCommand()
410 return new (Allocator) InlineCommandComment( in actOnUnknownCommand()
412 InlineCommandComment::RenderNormal, in actOnUnknownCommand()
1176 InlineCommandComment::RenderKind
[all …]
H A DJSONNodeDumper.cpp1520 const comments::InlineCommandComment *C, const comments::FullComment *) { in visitInlineCommandComment()
1524 case comments::InlineCommandComment::RenderNormal: in visitInlineCommandComment()
1527 case comments::InlineCommandComment::RenderBold: in visitInlineCommandComment()
1530 case comments::InlineCommandComment::RenderEmphasized: in visitInlineCommandComment()
1533 case comments::InlineCommandComment::RenderMonospaced: in visitInlineCommandComment()
1536 case comments::InlineCommandComment::RenderAnchor: in visitInlineCommandComment()
H A DTextNodeDumper.cpp726 const comments::InlineCommandComment *C, const comments::FullComment *) { in visitInlineCommandComment()
729 case comments::InlineCommandComment::RenderNormal: in visitInlineCommandComment()
732 case comments::InlineCommandComment::RenderBold: in visitInlineCommandComment()
735 case comments::InlineCommandComment::RenderMonospaced: in visitInlineCommandComment()
738 case comments::InlineCommandComment::RenderEmphasized: in visitInlineCommandComment()
741 case comments::InlineCommandComment::RenderAnchor: in visitInlineCommandComment()
H A DCommentParser.cpp402 InlineCommandComment *Parser::parseInlineCommand() { in parseInlineCommand()
413 InlineCommandComment *IC; in parseInlineCommand()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DCommentSema.h131 InlineCommandComment *actOnInlineCommand(SourceLocation CommandLocBegin,
135 InlineCommandComment *actOnInlineCommand(SourceLocation CommandLocBegin,
252 InlineCommandComment::RenderKind
H A DCommentParser.h105 InlineCommandComment *parseInlineCommand();
H A DComment.h93 friend class InlineCommandComment; variable
297 class InlineCommandComment : public InlineContentComment {
321 InlineCommandComment(SourceLocation LocBegin, in InlineCommandComment() function
H A DTextNodeDumper.h207 void visitInlineCommandComment(const comments::InlineCommandComment *C,
H A DJSONNodeDumper.h329 void visitInlineCommandComment(const comments::InlineCommandComment *C,
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DCommentNodes.td11 def InlineCommandComment : CommentNode<InlineContentComment>;