Home
last modified time | relevance | path

Searched refs:getCommandID (Results 1 – 11 of 11) sorted by relevance

/llvm-project/clang/lib/AST/
H A DCommentSema.cpp98 const CommandInfo *Info = Traits.getCommandInfo(Comment->getCommandID()); in checkFunctionDeclVerbatimLine()
103 switch (Comment->getCommandID()) { in checkFunctionDeclVerbatimLine()
131 const CommandInfo *Info = Traits.getCommandInfo(Comment->getCommandID()); in checkContainerDeclVerbatimLine()
135 switch (Comment->getCommandID()) { in checkContainerDeclVerbatimLine()
170 const CommandInfo *Info = Traits.getCommandInfo(Comment->getCommandID()); in checkContainerDecl()
174 switch (Comment->getCommandID()) { in checkContainerDecl()
536 if (Traits.getCommandInfo(Command->getCommandID())->IsEmptyParagraphAllowed) in checkBlockCommandEmptyParagraph()
554 if (!Traits.getCommandInfo(Command->getCommandID())->IsReturnsCommand) in checkReturnsCommand()
600 const CommandInfo *Info = Traits.getCommandInfo(Command->getCommandID()); in checkBlockCommandDuplicate()
638 if (!Traits.getCommandInfo(Command->getCommandID())
[all...]
H A DCommentParser.cpp478 const CommandInfo *Info = Traits.getCommandInfo(Tok.getCommandID()); in parseBlockCommand()
484 Tok.getCommandID(), in parseBlockCommand()
489 Tok.getCommandID(), in parseBlockCommand()
494 Tok.getCommandID(), in parseBlockCommand()
572 const CommandInfo *Info = Traits.getCommandInfo(Tok.getCommandID()); in parseInlineCommand()
583 CommandTok.getCommandID(), Args); in parseInlineCommand()
733 const CommandInfo *Info = Traits.getCommandInfo(Tok.getCommandID()); in parseParagraphOrBlockCommand()
H A DCommentBriefParser.cpp71 const CommandInfo *Info = Traits.getCommandInfo(Tok.getCommandID()); in Parse()
H A DJSONNodeDumper.cpp1736 JOS.attribute("name", getCommentCommandName(C->getCommandID())); in visitInlineCommandComment()
1786 JOS.attribute("name", getCommentCommandName(C->getCommandID())); in visitBlockCommandComment()
1836 JOS.attribute("name", getCommentCommandName(C->getCommandID())); in visitVerbatimBlockLineComment()
H A DTextNodeDumper.cpp1094 OS << " Name=\"" << getCommandName(C->getCommandID()) << "\""; in visitVerbatimBlockComment()
1138 OS << " Name=\"" << getCommandName(C->getCommandID()) << "\""; in dumpTemplateName()
1186 OS << " Name=\"" << getCommandName(C->getCommandID()) in dumpBareTemplateName()
/llvm-project/clang/lib/Index/
H A DCommentToXML.cpp123 const CommandInfo *Info = Traits.getCommandInfo(BCC->getCommandID()); in FullCommentParts()
174 const CommandInfo *Info = Traits.getCommandInfo(VLC->getCommandID()); in FullCommentParts()
335 const CommandInfo *Info = Traits.getCommandInfo(C->getCommandID()); in visitBlockCommandComment()
715 const unsigned CommandID = C->getCommandID(); in visitBlockCommandComment()
804 switch (C->getCommandID()) { in visitVerbatimBlockComment()
/llvm-project/clang/include/clang/AST/
H A DComment.h359 unsigned getCommandID() const {
364 return Traits.getCommandInfo(getCommandID())->Name;
648 unsigned getCommandID() const {
653 return Traits.getCommandInfo(getCommandID())->Name;
H A DCommentParser.h84 Traits.getCommandInfo(Tok.getCommandID())->IsBlockCommand; in isTokBlockCommand()
H A DCommentLexer.h120 unsigned getCommandID() const LLVM_READONLY { in getCommandID() function
/llvm-project/clang-tools-extra/clang-doc/
H A DSerialize.cpp109 CurrentCI.Name = getCommandName(C->getCommandID()); in visitInlineCommandComment()
133 CurrentCI.Name = getCommandName(C->getCommandID()); in visitBlockCommandComment()
155 CurrentCI.Name = getCommandName(C->getCommandID()); in visitVerbatimBlockComment()
/llvm-project/clang/unittests/AST/
H A DCommentLexer.cpp48 return Traits.getCommandInfo(Tok.getCommandID())->Name; in getCommandName()