Lines Matching refs:commands
107 Vector<KeypressCommand>* commands;
418 // Editing commands
696 // Next, handle editor commands. Start by returning YES for anything that is not an editor command.
714 // But returning NO here would be worse; that would make keyboard commands such as command-C fail.
1094 parameters->commands->append(KeypressCommand(NSStringFromSelector(selector)));
1140 parameters->commands->append(KeypressCommand("insertText:", text));
1251 if (!parameters || parameters->commands->isEmpty())
1255 // In this case, the state is up to date, and we don't need to execute any more saved commands to return a result.
1260 parameters->eventInterpretationHadSideEffects |= _data->_page->executeKeypressCommands(*parameters->commands);
1261 parameters->commands->clear();
1998 - (BOOL)_interpretKeyEvent:(NSEvent *)event savingCommandsTo:(Vector<WebCore::KeypressCommand>&)commands
2001 ASSERT(commands.isEmpty());
2012 parameters.commands = &commands;
2024 // If we have already executed all or some of the commands, the event is "handled". Note that there are additional checks on web process side.