Home
last modified time | relevance | path

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

/external/clang/tools/libclang/
DCXComment.cpp131 const InlineCommandComment *ICC = getASTNodeAs<InlineCommandComment>(CXC); in clang_InlineCommandComment_getCommandName()
141 const InlineCommandComment *ICC = getASTNodeAs<InlineCommandComment>(CXC); in clang_InlineCommandComment_getRenderKind()
146 case InlineCommandComment::RenderNormal: in clang_InlineCommandComment_getRenderKind()
149 case InlineCommandComment::RenderBold: in clang_InlineCommandComment_getRenderKind()
152 case InlineCommandComment::RenderMonospaced: in clang_InlineCommandComment_getRenderKind()
155 case InlineCommandComment::RenderEmphasized: in clang_InlineCommandComment_getRenderKind()
162 const InlineCommandComment *ICC = getASTNodeAs<InlineCommandComment>(CXC); in clang_InlineCommandComment_getNumArgs()
171 const InlineCommandComment *ICC = getASTNodeAs<InlineCommandComment>(CXC); in clang_InlineCommandComment_getArgText()
545 void visitInlineCommandComment(const InlineCommandComment *C);
581 const InlineCommandComment *C) { in visitInlineCommandComment()
[all …]
/external/clang/lib/AST/
DCommentDumper.cpp48 void visitInlineCommandComment(const InlineCommandComment *C);
119 void CommentDumper::visitInlineCommandComment(const InlineCommandComment *C) { in visitInlineCommandComment()
124 case InlineCommandComment::RenderNormal: in visitInlineCommandComment()
127 case InlineCommandComment::RenderBold: in visitInlineCommandComment()
130 case InlineCommandComment::RenderMonospaced: in visitInlineCommandComment()
133 case InlineCommandComment::RenderEmphasized: in visitInlineCommandComment()
DCommentSema.cpp240 InlineCommandComment *Sema::actOnInlineCommand(SourceLocation CommandLocBegin, in actOnInlineCommand()
243 ArrayRef<InlineCommandComment::Argument> Args; in actOnInlineCommand()
245 return new (Allocator) InlineCommandComment( in actOnInlineCommand()
253 InlineCommandComment *Sema::actOnInlineCommand(SourceLocation CommandLocBegin, in actOnInlineCommand()
259 typedef InlineCommandComment::Argument Argument; in actOnInlineCommand()
265 return new (Allocator) InlineCommandComment( in actOnInlineCommand()
276 ArrayRef<InlineCommandComment::Argument> Args; in actOnUnknownCommand()
278 return new (Allocator) InlineCommandComment( in actOnUnknownCommand()
280 InlineCommandComment::RenderNormal, in actOnUnknownCommand()
747 InlineCommandComment::RenderKind
[all …]
DCommentParser.cpp382 InlineCommandComment *Parser::parseInlineCommand() { in parseInlineCommand()
393 InlineCommandComment *IC; in parseInlineCommand()
/external/clang/include/clang/AST/
DCommentSema.h129 InlineCommandComment *actOnInlineCommand(SourceLocation CommandLocBegin,
133 InlineCommandComment *actOnInlineCommand(SourceLocation CommandLocBegin,
216 InlineCommandComment::RenderKind
DCommentParser.h107 InlineCommandComment *parseInlineCommand();
DComment.h73 friend class InlineCommandComment; variable
270 class InlineCommandComment : public InlineContentComment {
293 InlineCommandComment(SourceLocation LocBegin, in InlineCommandComment() function
308 static bool classof(const InlineCommandComment *) { return true; } in classof() argument
/external/clang/unittests/AST/
DCommentParser.cpp265 InlineCommandComment *&ICC, in HasInlineCommandAt()
285 InlineCommandComment *&ICC, in HasInlineCommandAt()
303 InlineCommandComment *&ICC, in HasInlineCommandAt()
973 InlineCommandComment *ICC; in TEST_F()
990 InlineCommandComment *ICC; in TEST_F()
1008 InlineCommandComment *ICC; in TEST_F()
1025 InlineCommandComment *ICC; in TEST_F()
1043 InlineCommandComment *ICC; in TEST_F()
/external/clang/include/clang/Basic/
DCommentNodes.td11 def InlineCommandComment : DComment<InlineContentComment>;