Home
last modified time | relevance | path

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

/src/contrib/llvm-project/clang/lib/AST/
H A DCommentCommandTraits.cpp40 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 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()
283 unsigned CommandID, in actOnTParamCommandStart() argument
286 new (Allocator) TParamCommandComment(LocBegin, LocEnd, CommandID, in actOnTParamCommandStart()
363 SourceLocation CommandLocEnd, unsigned CommandID, in actOnInlineCommand() argument
365 StringRef CommandName = Traits.getCommandInfo(CommandID)->Name; in actOnInlineCommand()
368 InlineCommandComment(CommandLocBegin, CommandLocEnd, CommandID, in actOnInlineCommand()
375 unsigned CommandID = Traits.registerUnknownCommand(CommandName)->getID(); in actOnUnknownCommand() local
[all …]
H A DJSONNodeDumper.cpp1713 StringRef JSONNodeDumper::getCommentCommandName(unsigned CommandID) const { in getCommentCommandName()
1715 return Traits->getCommandInfo(CommandID)->Name; in getCommentCommandName()
1717 comments::CommandTraits::getBuiltinCommandInfo(CommandID)) in getCommentCommandName()
H A DTextNodeDumper.cpp976 const char *TextNodeDumper::getCommandName(unsigned CommandID) { in getCommandName() argument
978 return Traits->getCommandInfo(CommandID)->Name; in getCommandName()
980 comments::CommandTraits::getBuiltinCommandInfo(CommandID); in getCommandName()
/src/contrib/llvm-project/clang/include/clang/AST/
H A DComment.h121 unsigned CommandID : CommandInfo::NumCommandIDBits;
174 unsigned CommandID : CommandInfo::NumCommandIDBits;
342 unsigned CommandID, InlineCommandRenderKind RK,
348 InlineCommandCommentBits.CommandID = CommandID;
360 return InlineCommandCommentBits.CommandID;
615 unsigned CommandID,
620 BlockCommandCommentBits.CommandID = CommandID;
626 unsigned CommandID, CommandMarkerKind CommandMarker)
630 BlockCommandCommentBits.CommandID = CommandID;
649 return BlockCommandCommentBits.CommandID;
[all …]
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;
/src/contrib/llvm-project/clang/lib/Index/
H A DCommentToXML.cpp715 const unsigned CommandID = C->getCommandID(); in visitBlockCommandComment() local
716 const CommandInfo *Info = Traits.getCommandInfo(CommandID); in visitBlockCommandComment()
721 switch (CommandID) { in visitBlockCommandComment()