Searched refs:commandName (Results 1 - 25 of 37) sorted by relevance

12

/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DKeyboardEvent.h40 explicit KeypressCommand(const String& commandName) : commandName(commandName) { ASSERT(isASCIILower(commandName[0U])); } argument
41 KeypressCommand(const String& commandName, const String& text) : commandName(commandName), text(text) { ASSERT(commandName == "insertText:"); } argument
43 String commandName; // Actually, a selector name - it may have a trailing colon, and a name that can be different from an editor command name. member in struct:WebCore::KeypressCommand
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/InjectedBundle/API/c/
H A DWKBundlePagePrivate.h37 WK_EXPORT bool WKBundlePageIsEditingCommandEnabled(WKBundlePageRef page, WKStringRef commandName);
42 WK_EXPORT void WKBundlePageExecuteEditingCommand(WKBundlePageRef page, WKStringRef commandName, WKStringRef argument);
/macosx-10.9.5/WebKit-7537.78.2/qt/WebCoreSupport/
H A DEditorClientQt.cpp468 String commandName = editorCommandForKeyDownEvent(event); local
469 if (!commandName.isEmpty()) {
470 if (frame->editor().command(commandName).execute()) // Event handled.
527 String commandName = editorCommandForKeyDownEvent(event); local
528 ASSERT(!commandName.isEmpty());
529 frame->editor().command(commandName).execute();
H A DQWebPageAdapter.cpp955 void QWebPageAdapter::updateActionInternal(QWebPageAdapter::MenuAction action, const char* commandName, bool* enabled, bool* checked) argument
982 if (commandName) {
983 Editor::Command command = editor.command(commandName);
995 void QWebPageAdapter::triggerAction(QWebPageAdapter::MenuAction action, QWebHitTestResultPrivate* hitTestResult, const char* commandName, bool endToEndReload) argument
1077 if (commandName)
1078 editor.command(commandName).execute();
H A DQWebPageAdapter.h296 void updateActionInternal(MenuAction, const char* commandName, bool* enabled, bool* checked);
297 void triggerAction(MenuAction, QWebHitTestResultPrivate*, const char* commandName, bool endToEndReload);
/macosx-10.9.5/WebKit-7537.78.2/blackberry/WebCoreSupport/
H A DEditorClientBlackBerry.cpp469 String commandName = interpretKeyEvent(event); local
472 ASSERT(!(event->type() == eventNames().keydownEvent && frame->editor().command(commandName).isTextInsertion()));
474 if (!commandName.isEmpty()) {
476 if (commandName != "DeleteBackward")
479 if (frame->editor().command(commandName).execute())
/macosx-10.9.5/WebKit2-7537.78.2/PluginProcess/
H A DPluginControllerProxy.cpp527 void PluginControllerProxy::handleEditingCommand(const String& commandName, const String& argument, bool& handled) argument
529 handled = m_plugin->handleEditingCommand(commandName, argument);
532 void PluginControllerProxy::isEditingCommandEnabled(const String& commandName, bool& enabled) argument
534 enabled = m_plugin->isEditingCommandEnabled(commandName);
/macosx-10.9.5/WebKit2-7537.78.2/Shared/mac/
H A DWebCoreArgumentCodersMac.mm223 encoder << keypressCommand.commandName << keypressCommand.text;
228 if (!decoder.decode(keypressCommand.commandName))
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/mac/
H A DWKViewInternal.h61 - (void)_setUserInterfaceItemState:(NSString *)commandName enabled:(BOOL)isEnabled state:(int)newState;
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/Plugins/
H A DPluginProxy.h107 virtual bool handleEditingCommand(const String& commandName, const String& argument) OVERRIDE;
108 virtual bool isEditingCommandEnabled(const String& commandName) OVERRIDE;
H A DPluginView.h95 bool handleEditingCommand(const String& commandName, const String& argument);
96 bool isEditingCommandEnabled(const String& commandName);
H A DPluginProxy.cpp438 bool PluginProxy::handleEditingCommand(const String& commandName, const String& argument) argument
444 if (!m_connection->connection()->sendSync(Messages::PluginControllerProxy::HandleEditingCommand(commandName, argument), Messages::PluginControllerProxy::HandleEditingCommand::Reply(handled), m_pluginInstanceID))
450 bool PluginProxy::isEditingCommandEnabled(const String& commandName) argument
456 if (!m_connection->connection()->sendSync(Messages::PluginControllerProxy::IsEditingCommandEnabled(commandName), Messages::PluginControllerProxy::IsEditingCommandEnabled::Reply(enabled), m_pluginInstanceID))
H A DPlugin.h201 virtual bool handleEditingCommand(const String& commandName, const String& argument) = 0;
H A DPluginView.cpp904 bool PluginView::handleEditingCommand(const String& commandName, const String& argument) argument
909 return m_plugin->handleEditingCommand(commandName, argument);
912 bool PluginView::isEditingCommandEnabled(const String& commandName) argument
917 return m_plugin->isEditingCommandEnabled(commandName);
/macosx-10.9.5/WebCore-7537.78.1/editing/
H A DEditor.h212 Command command(const String& commandName); // Command source is CommandFromMenuOrKeyBinding.
213 Command command(const String& commandName, EditorCommandSource);
214 static bool commandIsSupportedFromMenuOrKeyBinding(const String& commandName); // Works without a frame.
H A DEditorCommand.cpp1660 static const EditorInternalCommand* internalCommand(const String& commandName) argument
1663 return commandName.isEmpty() ? 0 : commandMap.get(commandName);
1666 Editor::Command Editor::command(const String& commandName) argument
1668 return Command(internalCommand(commandName), CommandFromMenuOrKeyBinding, m_frame);
1671 Editor::Command Editor::command(const String& commandName, EditorCommandSource source) argument
1673 return Command(internalCommand(commandName), source, m_frame);
1676 bool Editor::commandIsSupportedFromMenuOrKeyBinding(const String& commandName) argument
1678 return internalCommand(commandName);
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/Plugins/PDF/
H A DPDFPlugin.mm937 bool PDFPlugin::handleEditingCommand(const String& commandName, const String& argument)
939 if (commandName == "copy")
941 else if (commandName == "selectAll")
947 bool PDFPlugin::isEditingCommandEnabled(const String& commandName)
949 if (commandName == "copy")
952 if (commandName == "selectAll")
H A DPDFPlugin.h118 virtual bool handleEditingCommand(const String& commandName, const String& argument) OVERRIDE;
/macosx-10.9.5/tcl-102/tcl_ext/tclx/tclx/generic/
H A DtclXutil.c815 char *commandName;
819 commandName = Tcl_GetStringFromObj (commandNameObj, &commandLength);
823 commandName,
799 char *commandName; local
/macosx-10.9.5/tcl-102/tcl_ext/tclae/tclae/library/
H A Doserrors.tcl75 set error::OSErr(-1708) {AppleEvent -1708 {<reference> doesn't understand the <commandName> message.}}
88 set error::OSErr(-1721) {AppleEvent -1721 {<expression> doesn't match the parameters <parameterNames> for <commandName>.}}
/macosx-10.9.5/tcl-102/tcl_ext/tktreectrl/tktreectrl/generic/
H A DtkTreeNotify.c440 static CONST char *commandName[] = { "bind", "configure", "detailnames", local
455 if (Tcl_GetIndexFromObj(interp, objv[2], commandName, "command", 0,
/macosx-10.9.5/DiskArbitration-266/diskarbitrationd/
H A DDAFileSystem.c781 CFStringRef commandName = NULL; local
798 commandName = CFDictionaryGetValue( personality, CFSTR( kFSRepairExecutableKey ) );
799 if ( commandName == NULL ) { status = ENOTSUP; goto DAFileSystemRepairErr; }
801 command = ___CFBundleCopyResourceURLInDirectory( filesystem->_id, commandName );
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebPage/mac/
H A DWebPageMac.mm182 if (commands[i].commandName == "insertText:") {
192 Editor::Command command = frame->editor().command(commandNameForSelectorName(commands[i].commandName));
197 bool performedNonEditingBehavior = event->keyEvent()->type() == PlatformEvent::RawKeyDown && performNonEditingBehaviorForSelector(commands[i].commandName, event);
202 WebProcess::shared().parentProcessConnection()->sendSync(Messages::WebPageProxy::ExecuteSavedCommandBySelector(commands[i].commandName),
248 if (frame->editor().command(commandNameForSelectorName(commands[i].commandName)).isTextInsertion())
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebPage/
H A DWebPage.cpp772 void WebPage::executeEditingCommand(const String& commandName, const String& argument) argument
779 pluginView->handleEditingCommand(commandName, argument);
783 frame->editor().command(commandName).execute(argument);
786 bool WebPage::isEditingCommandEnabled(const String& commandName) argument
793 return pluginView->isEditingCommandEnabled(commandName);
795 Editor::Command command = frame->editor().command(commandName);
1874 void WebPage::validateCommand(const String& commandName, uint64_t callbackID) argument
1881 isEnabled = pluginView->isEditingCommandEnabled(commandName);
1883 Editor::Command command = frame->editor().command(commandName);
1889 send(Messages::WebPageProxy::ValidateCommandCallback(commandName, isEnable
1892 executeEditCommand(const String& commandName) argument
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/ftpd/
H A Dftpd.tcl891 foreach commandName $commandList {
892 if {[info commands ::ftpd::command::$commandName] == ""} {
893 puts -nonewline $sock [format " %-7s" "${commandName}*"]
895 puts -nonewline $sock [format " %-7s" $commandName]

Completed in 315 milliseconds

12