Searched defs:CommandID (Results 1 - 4 of 4) sorted by relevance

/external/clang/lib/AST/
H A DCommentCommandTraits.cpp40 const CommandInfo *CommandTraits::getCommandInfo(unsigned CommandID) const {
41 if (const CommandInfo *Info = getBuiltinCommandInfo(CommandID))
43 return getRegisteredCommandInfo(CommandID);
117 unsigned CommandID) {
118 if (CommandID < llvm::array_lengthof(Commands))
119 return &Commands[CommandID];
133 unsigned CommandID) const {
134 return RegisteredCommands[CommandID - llvm::array_lengthof(Commands)];
116 getBuiltinCommandInfo( unsigned CommandID) argument
H A DCommentSema.cpp53 unsigned CommandID,
56 CommandID,
83 unsigned CommandID,
86 new (Allocator) ParamCommandComment(LocBegin, LocEnd, CommandID,
284 unsigned CommandID,
287 new (Allocator) TParamCommandComment(LocBegin, LocEnd, CommandID,
366 unsigned CommandID) {
368 StringRef CommandName = Traits.getCommandInfo(CommandID)->Name;
372 CommandID,
379 unsigned CommandID,
50 actOnBlockCommandStart( SourceLocation LocBegin, SourceLocation LocEnd, unsigned CommandID, CommandMarkerKind CommandMarker) argument
80 actOnParamCommandStart( SourceLocation LocBegin, SourceLocation LocEnd, unsigned CommandID, CommandMarkerKind CommandMarker) argument
281 actOnTParamCommandStart( SourceLocation LocBegin, SourceLocation LocEnd, unsigned CommandID, CommandMarkerKind CommandMarker) argument
364 actOnInlineCommand(SourceLocation CommandLocBegin, SourceLocation CommandLocEnd, unsigned CommandID) argument
377 actOnInlineCommand(SourceLocation CommandLocBegin, SourceLocation CommandLocEnd, unsigned CommandID, SourceLocation ArgLocBegin, SourceLocation ArgLocEnd, StringRef Arg) argument
400 unsigned CommandID = Traits.registerUnknownCommand(CommandName)->getID(); local
404 actOnUnknownCommand(SourceLocation LocBegin, SourceLocation LocEnd, unsigned CommandID) argument
420 actOnVerbatimBlockStart(SourceLocation Loc, unsigned CommandID) argument
443 actOnVerbatimLine(SourceLocation LocBegin, unsigned CommandID, SourceLocation TextBegin, StringRef Text) argument
[all...]
H A DASTDumper.cpp560 const char *getCommandName(unsigned CommandID);
2305 const char *ASTDumper::getCommandName(unsigned CommandID) { argument
2307 return Traits->getCommandInfo(CommandID)->Name;
2308 const CommandInfo *Info = CommandTraits::getBuiltinCommandInfo(CommandID);
/external/clang/include/clang/AST/
H A DComment.h99 unsigned CommandID : CommandInfo::NumCommandIDBits;
143 unsigned CommandID : CommandInfo::NumCommandIDBits;
328 unsigned CommandID,
334 InlineCommandCommentBits.CommandID = CommandID;
346 return InlineCommandCommentBits.CommandID;
622 unsigned CommandID,
627 BlockCommandCommentBits.CommandID = CommandID;
634 unsigned CommandID,
326 InlineCommandComment(SourceLocation LocBegin, SourceLocation LocEnd, unsigned CommandID, RenderKind RK, ArrayRef<Argument> Args) argument
619 BlockCommandComment(CommentKind K, SourceLocation LocBegin, SourceLocation LocEnd, unsigned CommandID, CommandMarkerKind CommandMarker) argument
632 BlockCommandComment(SourceLocation LocBegin, SourceLocation LocEnd, unsigned CommandID, CommandMarkerKind CommandMarker) argument
728 ParamCommandComment(SourceLocation LocBegin, SourceLocation LocEnd, unsigned CommandID, CommandMarkerKind CommandMarker) argument
822 TParamCommandComment(SourceLocation LocBegin, SourceLocation LocEnd, unsigned CommandID, CommandMarkerKind CommandMarker) argument
904 VerbatimBlockComment(SourceLocation LocBegin, SourceLocation LocEnd, unsigned CommandID) argument
955 VerbatimLineComment(SourceLocation LocBegin, SourceLocation LocEnd, unsigned CommandID, SourceLocation TextBegin, StringRef Text) argument
[all...]

Completed in 155 milliseconds