Lines Matching refs:Command
39 for (Command& cmd : fCommands) { in onKey()
40 if (Command::kKey_CommandType == cmd.fType && key == cmd.fKey) { in onKey()
51 for (Command& cmd : fCommands) { in onChar()
52 if (Command::kChar_CommandType == cmd.fType && c == cmd.fChar) { in onChar()
62 for (const Command& cmd : fCommands) { in onSoftkey()
73 fCommands.push_back(Command(c, group, description, function)); in addCommand()
78 fCommands.push_back(Command(k, keyName, group, description, function)); in addCommand()
87 bool CommandSet::compareCommandKey(const Command& first, const Command& second) { in compareCommandKey()
91 bool CommandSet::compareCommandGroup(const Command& first, const Command& second) { in compareCommandGroup()
127 for (Command& cmd : fCommands) { in drawHelp()
142 for (Command& cmd : fCommands) { in drawHelp()
162 for(const Command& command : fCommands) { in getCommandsAsSoftkeys()