Home
last modified time | relevance | path

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

/external/clang/tools/libclang/
DCXComment.cpp132 const InlineCommandComment *ICC = getASTNodeAs<InlineCommandComment>(CXC); in clang_InlineCommandComment_getCommandName()
142 const InlineCommandComment *ICC = getASTNodeAs<InlineCommandComment>(CXC); in clang_InlineCommandComment_getRenderKind()
147 case InlineCommandComment::RenderNormal: in clang_InlineCommandComment_getRenderKind()
150 case InlineCommandComment::RenderBold: in clang_InlineCommandComment_getRenderKind()
153 case InlineCommandComment::RenderMonospaced: in clang_InlineCommandComment_getRenderKind()
156 case InlineCommandComment::RenderEmphasized: in clang_InlineCommandComment_getRenderKind()
163 const InlineCommandComment *ICC = getASTNodeAs<InlineCommandComment>(CXC); in clang_InlineCommandComment_getNumArgs()
172 const InlineCommandComment *ICC = getASTNodeAs<InlineCommandComment>(CXC); in clang_InlineCommandComment_getArgText()
552 void visitInlineCommandComment(const InlineCommandComment *C);
589 const InlineCommandComment *C) { in visitInlineCommandComment()
[all …]
/external/clang/lib/AST/
DCommentSema.cpp369 InlineCommandComment *Sema::actOnInlineCommand(SourceLocation CommandLocBegin, in actOnInlineCommand()
372 ArrayRef<InlineCommandComment::Argument> Args; in actOnInlineCommand()
374 return new (Allocator) InlineCommandComment( in actOnInlineCommand()
382 InlineCommandComment *Sema::actOnInlineCommand(SourceLocation CommandLocBegin, in actOnInlineCommand()
388 typedef InlineCommandComment::Argument Argument; in actOnInlineCommand()
394 return new (Allocator) InlineCommandComment( in actOnInlineCommand()
412 ArrayRef<InlineCommandComment::Argument> Args; in actOnUnknownCommand()
413 return new (Allocator) InlineCommandComment( in actOnUnknownCommand()
415 InlineCommandComment::RenderNormal, in actOnUnknownCommand()
1033 InlineCommandComment::RenderKind
[all …]
DASTDumper.cpp296 void visitInlineCommandComment(const InlineCommandComment *C);
1834 void ASTDumper::visitInlineCommandComment(const InlineCommandComment *C) { in visitInlineCommandComment()
1837 case InlineCommandComment::RenderNormal: in visitInlineCommandComment()
1840 case InlineCommandComment::RenderBold: in visitInlineCommandComment()
1843 case InlineCommandComment::RenderMonospaced: in visitInlineCommandComment()
1846 case InlineCommandComment::RenderEmphasized: in visitInlineCommandComment()
DCommentParser.cpp399 InlineCommandComment *Parser::parseInlineCommand() { in parseInlineCommand()
410 InlineCommandComment *IC; in parseInlineCommand()
/external/clang/include/clang/AST/
DCommentSema.h139 InlineCommandComment *actOnInlineCommand(SourceLocation CommandLocBegin,
143 InlineCommandComment *actOnInlineCommand(SourceLocation CommandLocBegin,
247 InlineCommandComment::RenderKind
DCommentParser.h112 InlineCommandComment *parseInlineCommand();
DComment.h94 friend class InlineCommandComment; variable
290 class InlineCommandComment : public InlineContentComment {
313 InlineCommandComment(SourceLocation LocBegin, in InlineCommandComment() function
/external/clang/unittests/AST/
DCommentParser.cpp266 InlineCommandComment *&ICC, in HasInlineCommandAt()
286 InlineCommandComment *&ICC, in HasInlineCommandAt()
304 InlineCommandComment *&ICC, in HasInlineCommandAt()
974 InlineCommandComment *ICC; in TEST_F()
991 InlineCommandComment *ICC; in TEST_F()
1009 InlineCommandComment *ICC; in TEST_F()
1026 InlineCommandComment *ICC; in TEST_F()
1044 InlineCommandComment *ICC; in TEST_F()
/external/clang/include/clang/Basic/
DCommentNodes.td11 def InlineCommandComment : DComment<InlineContentComment>;