Home | History | Annotate | Download | only in sk_app

Lines Matching refs:Command

40         for (Command& cmd : fCommands) {
41 if (Command::kKey_CommandType == cmd.fType && key == cmd.fKey) {
52 for (Command& cmd : fCommands) {
53 if (Command::kChar_CommandType == cmd.fType && c == cmd.fChar) {
63 for (const Command& cmd : fCommands) {
74 fCommands.push_back(Command(c, group, description, function));
79 fCommands.push_back(Command(k, keyName, group, description, function));
88 bool CommandSet::compareCommandKey(const Command& first, const Command& second) {
92 bool CommandSet::compareCommandGroup(const Command& first, const Command& second) {
128 for (Command& cmd : fCommands) {
143 for (Command& cmd : fCommands) {
163 for(const Command& command : fCommands) {
164 result.push_back(command.getSoftkeyString());