Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DCommentSema.cpp99 const CommandInfo *Info = Traits.getCommandInfo(Comment->getCommandID()); in checkFunctionDeclVerbatimLine()
104 switch (Comment->getCommandID()) { in checkFunctionDeclVerbatimLine()
132 const CommandInfo *Info = Traits.getCommandInfo(Comment->getCommandID()); in checkContainerDeclVerbatimLine()
136 switch (Comment->getCommandID()) { in checkContainerDeclVerbatimLine()
174 const CommandInfo *Info = Traits.getCommandInfo(Comment->getCommandID()); in checkContainerDecl()
178 switch (Comment->getCommandID()) { in checkContainerDecl()
539 if (Traits.getCommandInfo(Command->getCommandID())->IsEmptyParagraphAllowed) in checkBlockCommandEmptyParagraph()
557 if (!Traits.getCommandInfo(Command->getCommandID())->IsReturnsCommand) in checkReturnsCommand()
603 const CommandInfo *Info = Traits.getCommandInfo(Command->getCommandID()); in checkBlockCommandDuplicate()
641 if (!Traits.getCommandInfo(Command->getCommandID())->IsDeprecatedCommand) in checkDeprecatedCommand()
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.cpp1749 JOS.attribute("name", getCommentCommandName(C->getCommandID())); in visitInlineCommandComment()
1799 JOS.attribute("name", getCommentCommandName(C->getCommandID())); in visitBlockCommandComment()
1849 JOS.attribute("name", getCommentCommandName(C->getCommandID())); in visitVerbatimBlockComment()
H A DTextNodeDumper.cpp1131 OS << " Name=\"" << getCommandName(C->getCommandID()) << "\""; in visitInlineCommandComment()
1175 OS << " Name=\"" << getCommandName(C->getCommandID()) << "\""; in visitBlockCommandComment()
1223 OS << " Name=\"" << getCommandName(C->getCommandID()) in visitVerbatimBlockComment()
/freebsd/contrib/llvm-project/clang/lib/Index/
H A DCommentToXML.cpp122 const CommandInfo *Info = Traits.getCommandInfo(BCC->getCommandID()); in FullCommentParts()
173 const CommandInfo *Info = Traits.getCommandInfo(VLC->getCommandID()); in FullCommentParts()
334 const CommandInfo *Info = Traits.getCommandInfo(C->getCommandID()); in visitBlockCommandComment()
714 const unsigned CommandID = C->getCommandID(); in visitBlockCommandComment()
803 switch (C->getCommandID()) { in visitVerbatimBlockComment()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DCommentParser.h84 Traits.getCommandInfo(Tok.getCommandID())->IsBlockCommand; in isTokBlockCommand()
H A DCommentLexer.h120 unsigned getCommandID() const LLVM_READONLY { in getCommandID() function