Searched refs:CommandID (Results 1 – 9 of 9) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | CommentCommandTraits.cpp | 40 const CommandInfo *CommandTraits::getCommandInfo(unsigned CommandID) const { in getCommandInfo() 41 if (const CommandInfo *Info = getBuiltinCommandInfo(CommandID)) in getCommandInfo() 43 return getRegisteredCommandInfo(CommandID); in getCommandInfo() 117 unsigned CommandID) { in getBuiltinCommandInfo() argument 118 if (CommandID < std::size(Commands)) in getBuiltinCommandInfo() 119 return &Commands[CommandID]; in getBuiltinCommandInfo() 133 unsigned CommandID) const { in getRegisteredCommandInfo() 134 return RegisteredCommands[CommandID - std::size(Commands)]; in getRegisteredCommandInfo()
|
| H A D | CommentSema.cpp | 53 unsigned CommandID, in actOnBlockCommandStart() argument 83 unsigned CommandID, in actOnParamCommandStart() argument 86 new (Allocator) ParamCommandComment(LocBegin, LocEnd, CommandID, in actOnParamCommandStart() 283 unsigned CommandID, in actOnTParamCommandStart() argument 365 StringRef CommandName = Traits.getCommandInfo(CommandID)->Name; in actOnInlineCommand() 368 InlineCommandComment(CommandLocBegin, CommandLocEnd, CommandID, in actOnInlineCommand() 376 return actOnUnknownCommand(LocBegin, LocEnd, CommandID); in actOnUnknownCommand() 395 StringRef CommandName = Traits.getCommandInfo(CommandID)->Name; in actOnVerbatimBlockStart() 399 CommandID); in actOnVerbatimBlockStart() 417 unsigned CommandID, in actOnVerbatimLine() argument [all …]
|
| H A D | JSONNodeDumper.cpp | 1670 StringRef JSONNodeDumper::getCommentCommandName(unsigned CommandID) const { in getCommentCommandName() 1672 return Traits->getCommandInfo(CommandID)->Name; in getCommentCommandName() 1674 comments::CommandTraits::getBuiltinCommandInfo(CommandID)) in getCommentCommandName()
|
| H A D | TextNodeDumper.cpp | 839 const char *TextNodeDumper::getCommandName(unsigned CommandID) { in getCommandName() argument 841 return Traits->getCommandInfo(CommandID)->Name; in getCommandName() 843 comments::CommandTraits::getBuiltinCommandInfo(CommandID); in getCommandName()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | CommentSema.h | 91 unsigned CommandID, 102 unsigned CommandID, 120 unsigned CommandID, 133 unsigned CommandID, 142 unsigned CommandID); 149 unsigned CommandID); 160 unsigned CommandID,
|
| H A D | Comment.h | 121 unsigned CommandID : CommandInfo::NumCommandIDBits; 174 unsigned CommandID : CommandInfo::NumCommandIDBits; 348 InlineCommandCommentBits.CommandID = CommandID; 360 return InlineCommandCommentBits.CommandID; 615 unsigned CommandID, 620 BlockCommandCommentBits.CommandID = CommandID; 630 BlockCommandCommentBits.CommandID = CommandID; 649 return BlockCommandCommentBits.CommandID; 887 unsigned CommandID) 889 CommandID, [all …]
|
| H A D | CommentCommandTraits.h | 153 const CommandInfo *getCommandInfo(unsigned CommandID) const; 165 static const CommandInfo *getBuiltinCommandInfo(unsigned CommandID); 172 const CommandInfo *getRegisteredCommandInfo(unsigned CommandID) const;
|
| H A D | TextNodeDumper.h | 156 const char *getCommandName(unsigned CommandID);
|
| H A D | JSONNodeDumper.h | 185 StringRef getCommentCommandName(unsigned CommandID) const;
|