Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DCommentCommandTraits.cpp39 const CommandInfo *CommandTraits::getCommandInfo(unsigned CommandID) const { in getCommandInfo()
40 if (const CommandInfo *Info = getBuiltinCommandInfo(CommandID)) in getCommandInfo()
42 return getRegisteredCommandInfo(CommandID); in getCommandInfo()
116 unsigned CommandID) { in getBuiltinCommandInfo() argument
117 if (CommandID < std::size(Commands)) in getBuiltinCommandInfo()
118 return &Commands[CommandID]; in getBuiltinCommandInfo()
132 unsigned CommandID) const { in getRegisteredCommandInfo()
133 return RegisteredCommands[CommandID - std::size(Commands)]; in getRegisteredCommandInfo()
H A DCommentSema.cpp53 unsigned CommandID, in actOnBlockCommandStart() argument
56 CommandID, in actOnBlockCommandStart()
83 unsigned CommandID, in actOnParamCommandStart() argument
86 new (Allocator) ParamCommandComment(LocBegin, LocEnd, CommandID, in actOnParamCommandStart()
285 unsigned CommandID, in actOnTParamCommandStart() argument
288 new (Allocator) TParamCommandComment(LocBegin, LocEnd, CommandID, in actOnTParamCommandStart()
365 SourceLocation CommandLocEnd, unsigned CommandID, in actOnInlineCommand() argument
367 StringRef CommandName = Traits.getCommandInfo(CommandID)->Name; in actOnInlineCommand()
370 InlineCommandComment(CommandLocBegin, CommandLocEnd, CommandID, in actOnInlineCommand()
377 unsigned CommandID = Traits.registerUnknownCommand(CommandName)->getID(); in actOnUnknownCommand() local
[all …]
H A DJSONNodeDumper.cpp1733 StringRef JSONNodeDumper::getCommentCommandName(unsigned CommandID) const { in getCommentCommandName()
1735 return Traits->getCommandInfo(CommandID)->Name; in getCommentCommandName()
1737 comments::CommandTraits::getBuiltinCommandInfo(CommandID)) in getCommentCommandName()
H A DTextNodeDumper.cpp1107 const char *TextNodeDumper::getCommandName(unsigned CommandID) { in getCommandName() argument
1109 return Traits->getCommandInfo(CommandID)->Name; in getCommandName()
1111 comments::CommandTraits::getBuiltinCommandInfo(CommandID); in getCommandName()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DCommentSema.h91 unsigned CommandID,
102 unsigned CommandID,
120 unsigned CommandID,
133 unsigned CommandID,
142 unsigned CommandID);
149 unsigned CommandID);
160 unsigned CommandID,
H A DCommentCommandTraits.h175 const CommandInfo *getCommandInfo(unsigned CommandID) const;
187 static const CommandInfo *getBuiltinCommandInfo(unsigned CommandID);
194 const CommandInfo *getRegisteredCommandInfo(unsigned CommandID) const;
H A DTextNodeDumper.h158 const char *getCommandName(unsigned CommandID);
H A DJSONNodeDumper.h185 StringRef getCommentCommandName(unsigned CommandID) const;
/freebsd/contrib/llvm-project/clang/lib/Index/
H A DCommentToXML.cpp714 const unsigned CommandID = C->getCommandID(); in visitBlockCommandComment() local
715 const CommandInfo *Info = Traits.getCommandInfo(CommandID); in visitBlockCommandComment()
720 switch (CommandID) { in visitBlockCommandComment()