HomeSort by relevance Sort by last modified time
    Searched refs:CommandInfo (Results 1 - 9 of 9) sorted by null

  /external/clang/include/clang/AST/
CommentCommandTraits.h 33 struct CommandInfo {
114 /// \brief True if this command is unknown. This \c CommandInfo object was
135 /// \returns a CommandInfo object for a given command name or
136 /// NULL if no CommandInfo object exists for this command.
137 const CommandInfo *getCommandInfoOrNULL(StringRef Name) const;
139 const CommandInfo *getCommandInfo(StringRef Name) const {
140 if (const CommandInfo *Info = getCommandInfoOrNULL(Name))
145 const CommandInfo *getCommandInfo(unsigned CommandID) const;
147 const CommandInfo *registerUnknownCommand(StringRef CommandName);
149 const CommandInfo *registerBlockCommand(StringRef CommandName)
    [all...]
CommentLexer.h 29 struct CommandInfo;
327 char Marker, const CommandInfo *Info);
334 const CommandInfo *Info);
  /external/clang/lib/AST/
CommentCommandTraits.cpp 34 const CommandInfo *CommandTraits::getCommandInfoOrNULL(StringRef Name) const {
35 if (const CommandInfo *Info = getBuiltinCommandInfo(Name))
40 const CommandInfo *CommandTraits::getCommandInfo(unsigned CommandID) const {
41 if (const CommandInfo *Info = getBuiltinCommandInfo(CommandID))
46 CommandInfo *CommandTraits::createCommandInfoWithName(StringRef CommandName) {
51 // Value-initialize (=zero-initialize in this case) a new CommandInfo.
52 CommandInfo *Info = new (Allocator) CommandInfo();
61 const CommandInfo *CommandTraits::registerUnknownCommand(
63 CommandInfo *Info = createCommandInfoWithName(CommandName)
    [all...]
CommentBriefParser.cpp 82 const CommandInfo *Info = Traits.getCommandInfo(Tok.getCommandID());
CommentParser.cpp 310 const CommandInfo *Info = Traits.getCommandInfo(Tok.getCommandID());
569 const CommandInfo *Info = Traits.getCommandInfo(Tok.getCommandID());
672 const CommandInfo *Info = Traits.getCommandInfo(Tok.getVerbatimBlockID());
CommentSema.cpp 95 const CommandInfo *Info = Traits.getCommandInfo(Comment->getCommandID());
122 const CommandInfo *Info = Traits.getCommandInfo(Comment->getCommandID());
154 const CommandInfo *Info = Traits.getCommandInfo(Comment->getCommandID());
607 const CommandInfo *Info = Traits.getCommandInfo(Command->getCommandID());
    [all...]
ASTDumper.cpp     [all...]
  /external/clang/tools/libclang/
CXComment.cpp 446 const CommandInfo *Info = Traits.getCommandInfo(BCC->getCommandID());
493 const CommandInfo *Info = Traits.getCommandInfo(VLC->getCommandID());
653 const CommandInfo *Info = Traits.getCommandInfo(C->getCommandID());
    [all...]
  /hardware/ril/libril/
ril.cpp 123 } CommandInfo;
133 CommandInfo *pCI;
258 static CommandInfo s_commands[] = {
    [all...]

Completed in 146 milliseconds