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

/external/webkit/Source/WebCore/dom/
H A DKeyboardEvent.h39 KeypressCommand(const String& commandName) : commandName(commandName) { ASSERT(isASCIILower(commandName[0U])); } argument
40 KeypressCommand(const String& commandName, const String& text) : commandName(commandName), text(text) { ASSERT(commandName == "insertText:"); } argument
42 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
H A DDocument.cpp4039 static Editor::Command command(Document* document, const String& commandName, bool userInterface = false) argument
4047 return frame->editor()->command(commandName,
4051 bool Document::execCommand(const String& commandName, bool userInterface, const String& value) argument
4053 return command(this, commandName, userInterface).execute(value);
4056 bool Document::queryCommandEnabled(const String& commandName) argument
4058 return command(this, commandName).isEnabled();
4061 bool Document::queryCommandIndeterm(const String& commandName) argument
4063 return command(this, commandName).state() == MixedTriState;
4066 bool Document::queryCommandState(const String& commandName) argument
4068 return command(this, commandName)
4071 queryCommandSupported(const String& commandName) argument
4076 queryCommandValue(const String& commandName) argument
[all...]
/external/emma/core/java12/
H A Demma.java35 final String commandName = args [0];
39 final Command command = Command.create (commandName, "emma ".concat (commandName), commandArgs);
/external/webkit/Source/WebKit/chromium/src/
H A DWebDevToolsAgentImpl.cpp339 String commandName; local
340 if (!InspectorBackendDispatcher::getCommandName(message, &commandName))
342 return commandName == InspectorBackendDispatcher::Debugger_pauseCmd
343 || commandName == InspectorBackendDispatcher::Debugger_setBreakpointCmd
344 || commandName == InspectorBackendDispatcher::Debugger_setBreakpointByUrlCmd
345 || commandName == InspectorBackendDispatcher::Debugger_removeBreakpointCmd
346 || commandName == InspectorBackendDispatcher::Debugger_setBreakpointsActiveCmd
347 || commandName == InspectorBackendDispatcher::Profiler_startCmd
348 || commandName == InspectorBackendDispatcher::Profiler_stopCmd
349 || commandName
[all...]
H A DEditorClientImpl.cpp575 String commandName = interpretKeyEvent(evt);
576 Editor::Command command = frame->editor()->command(commandName);
584 if (command.isTextInsertion() || commandName.isEmpty())
588 m_webView->client()->didExecuteCommand(WebString(commandName));
596 m_webView->client()->didExecuteCommand(WebString(commandName));
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
H A DWKBundlePagePrivate.h37 WK_EXPORT bool WKBundlePageIsEditingCommandEnabled(WKBundlePageRef page, WKStringRef commandName);
41 WK_EXPORT void WKBundlePageExecuteEditingCommand(WKBundlePageRef page, WKStringRef commandName, WKStringRef argument);
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DEditorClientQt.cpp454 String commandName = editorCommandForKeyDownEvent(event); local
455 if (!commandName.isEmpty()) {
456 if (frame->editor()->command(commandName).execute()) // Event handled.
515 String commandName = editorCommandForKeyDownEvent(event); local
516 ASSERT(!commandName.isEmpty());
517 frame->editor()->command(commandName).execute();
/external/webkit/Source/WebKit2/UIProcess/API/mac/
H A DWKViewInternal.h55 - (void)_setUserInterfaceItemState:(NSString *)commandName enabled:(BOOL)isEnabled state:(int)newState;
H A DWKView.mm610 static void validateCommandCallback(WKStringRef commandName, bool isEnabled, int32_t state, WKErrorRef error, void* context)
619 [wkView _setUserInterfaceItemState:nsStringFromWebCoreString(toImpl(commandName)->string()) enabled:isEnabled state:state];
698 String commandName = commandNameForSelector([item action]);
699 if (!Editor::commandIsSupportedFromMenuOrKeyBinding(commandName))
703 pair<ValidationMap::iterator, bool> addResult = _data->_validationMap.add(commandName, ValidationVector());
709 _data->_page->validateCommand(commandName, ValidateCommandCallback::create(self, validateCommandCallback));
1975 - (void)_setUserInterfaceItemState:(NSString *)commandName enabled:(BOOL)isEnabled state:(int)newState
1977 ValidationVector items = _data->_validationMap.take(commandName);
/external/webkit/Source/WebCore/editing/
H A DEditor.h198 Command command(const String& commandName); // Command source is CommandFromMenuOrKeyBinding.
199 Command command(const String& commandName, EditorCommandSource);
200 static bool commandIsSupportedFromMenuOrKeyBinding(const String& commandName); // Works without a frame.
H A DEditorCommand.cpp1598 static const EditorInternalCommand* internalCommand(const String& commandName) argument
1601 return commandName.isEmpty() ? 0 : commandMap.get(commandName);
1604 Editor::Command Editor::command(const String& commandName) argument
1606 return Command(internalCommand(commandName), CommandFromMenuOrKeyBinding, m_frame);
1609 Editor::Command Editor::command(const String& commandName, EditorCommandSource source) argument
1611 return Command(internalCommand(commandName), source, m_frame);
1614 bool Editor::commandIsSupportedFromMenuOrKeyBinding(const String& commandName) argument
1616 return internalCommand(commandName);
/external/webkit/Source/WebKit/chromium/public/
H A DWebViewClient.h165 virtual void didExecuteCommand(const WebString& commandName) { } argument
/external/webkit/Source/WebKit2/WebProcess/WebPage/mac/
H A DWebPageMac.mm137 if (commands[i].commandName == "insertText:") {
147 Editor::Command command = frame->editor()->command(commandNameForSelectorName(commands[i].commandName));
152 bool performedNonEditingBehavior = event->keyEvent()->type() == PlatformKeyboardEvent::RawKeyDown && performNonEditingBehaviorForSelector(commands[i].commandName);
157 WebProcess::shared().connection()->sendSync(Messages::WebPageProxy::ExecuteSavedCommandBySelector(commands[i].commandName),
203 if (frame->editor()->command(commandNameForSelectorName(commands[i].commandName)).isTextInsertion())
/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DWebPage.cpp345 void WebPage::executeEditingCommand(const String& commandName, const String& argument) argument
350 frame->editor()->command(commandName).execute(argument);
353 bool WebPage::isEditingCommandEnabled(const String& commandName) argument
359 Editor::Command command = frame->editor()->command(commandName);
1034 void WebPage::validateCommand(const String& commandName, uint64_t callbackID) argument
1040 Editor::Command command = frame->editor()->command(commandName);
1045 send(Messages::WebPageProxy::ValidateCommandCallback(commandName, isEnabled, state, callbackID));
1048 void WebPage::executeEditCommand(const String& commandName) argument
1050 executeEditingCommand(commandName, String());
H A DWebPage.h222 void executeEditingCommand(const String& commandName, const String& argument);
223 bool isEditingCommandEnabled(const String& commandName);
/external/webkit/Source/WebKit2/Shared/
H A DWebCoreArgumentCoders.h391 encoder->encode(CoreIPC::In(keypressCommand.commandName, keypressCommand.text));
396 return decoder->decode(CoreIPC::Out(keypressCommand.commandName, keypressCommand.text));
/external/skia/gm/
H A Dgmmain.cpp673 const char* const commandName = argv[0]; local
714 usage(commandName);
719 usage(commandName);
/external/webkit/Source/WebKit2/UIProcess/
H A DWebPageProxy.h247 void executeEditCommand(const String& commandName);
248 void validateCommand(const String& commandName, PassRefPtr<ValidateCommandCallback>);
H A DWebPageProxy.cpp644 void WebPageProxy::validateCommand(const String& commandName, PassRefPtr<ValidateCommandCallback> callback) argument
653 process()->send(Messages::WebPage::ValidateCommand(commandName, callbackID), m_pageID);
656 void WebPageProxy::executeEditCommand(const String& commandName) argument
661 process()->send(Messages::WebPage::ExecuteEditCommand(commandName), m_pageID);
2678 void WebPageProxy::validateCommandCallback(const String& commandName, bool isEnabled, int state, uint64_t callbackID) argument
2686 callback->performCallbackWithReturnValue(commandName.impl(), isEnabled, state);
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebpage.cpp567 const char* commandName = editorCommandForWebActions(action);
570 if (commandName) {
571 Editor::Command command = editor->command(commandName);
/external/webkit/Source/WebKit/mac/WebView/
H A DWebHTMLView.mm5473 if (commands[i].commandName == "insertText:")
5475 else if (commands[i].commandName == "noop:")
5478 [self doCommandBySelector:NSSelectorFromString(commands[i].commandName)];
5531 if ([self coreCommandBySelector:NSSelectorFromString(commands[i].commandName)].isTextInsertion())
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 373 milliseconds