HomeSort by relevance Sort by last modified time
    Searched refs:commandName (Results 1 - 25 of 30) sorted by null

1 2

  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
Dicttool.java 37 public static void addCommand(final String commandName, final Class<? extends Command> cls) {
38 sCommands.put(commandName, cls);
41 private static Command getCommandInstance(final String commandName) {
43 return sCommands.get(commandName).newInstance();
45 throw new RuntimeException(commandName + " is not installed");
47 throw new RuntimeException(commandName + " is not installed");
53 for (final String commandName : sCommands.keySet()) {
54 System.out.println("*** " + commandName);
55 System.out.println(getCommandInstance(commandName).getHelp());
60 private static boolean isCommand(final String commandName) {
    [all...]
  /external/webkit/Source/WebCore/dom/
KeyboardEvent.h 39 KeypressCommand(const String& commandName) : commandName(commandName) { ASSERT(isASCIILower(commandName[0U])); }
40 KeypressCommand(const String& commandName, const String& text) : commandName(commandName), text(text) { ASSERT(commandName == "insertText:"); }
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.
Document.cpp     [all...]
  /external/emma/core/java12/
emma.java 35 final String commandName = args [0];
39 final Command command = Command.create (commandName, "emma ".concat (commandName), commandArgs);
  /external/webkit/Source/WebKit/chromium/src/
WebDevToolsAgentImpl.cpp 339 String commandName;
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 == InspectorBackendDispatcher::Profiler_getProfileCmd
    [all...]
EditorClientImpl.cpp 575 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));
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundlePagePrivate.h 37 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/
EditorClientQt.cpp 454 String commandName = editorCommandForKeyDownEvent(event);
455 if (!commandName.isEmpty()) {
456 if (frame->editor()->command(commandName).execute()) // Event handled.
515 String commandName = editorCommandForKeyDownEvent(event);
516 ASSERT(!commandName.isEmpty());
517 frame->editor()->command(commandName).execute();
  /development/samples/USB/AdbTest/src/com/android/adb/
AdbMessage.java 150 String commandName = extractString(mMessageBuffer, 0, 4);
152 String result = "Adb Message: " + commandName + " arg0: " + getArg0() +
  /external/webkit/Source/WebKit2/UIProcess/API/mac/
WKViewInternal.h 55 - (void)_setUserInterfaceItemState:(NSString *)commandName enabled:(BOOL)isEnabled state:(int)newState;
WKView.mm 610 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));
    [all...]
  /external/webkit/Source/WebKit/chromium/public/
WebViewClient.h 165 virtual void didExecuteCommand(const WebString& commandName) { }
  /external/skia/gm/
gmmain.cpp     [all...]
  /external/webkit/Source/WebCore/editing/
Editor.h 198 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.
EditorCommand.cpp     [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/mac/
WebPageMac.mm 137 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/
WebPage.cpp 345 void WebPage::executeEditingCommand(const String& commandName, const String& argument)
350 frame->editor()->command(commandName).execute(argument);
353 bool WebPage::isEditingCommandEnabled(const String& commandName)
359 Editor::Command command = frame->editor()->command(commandName);
1034 void WebPage::validateCommand(const String& commandName, uint64_t callbackID)
1040 Editor::Command command = frame->editor()->command(commandName);
1045 send(Messages::WebPageProxy::ValidateCommandCallback(commandName, isEnabled, state, callbackID));
1048 void WebPage::executeEditCommand(const String& commandName)
1050 executeEditingCommand(commandName, String());
    [all...]
WebPage.h 222 void executeEditingCommand(const String& commandName, const String& argument);
223 bool isEditingCommandEnabled(const String& commandName);
  /external/webkit/Source/WebKit2/Shared/
WebCoreArgumentCoders.h 391 encoder->encode(CoreIPC::In(keypressCommand.commandName, keypressCommand.text));
396 return decoder->decode(CoreIPC::Out(keypressCommand.commandName, keypressCommand.text));
  /external/webkit/Source/WebKit2/UIProcess/
WebPageProxy.h 247 void executeEditCommand(const String& commandName);
248 void validateCommand(const String& commandName, PassRefPtr<ValidateCommandCallback>);
    [all...]
WebPageProxy.cpp 644 void WebPageProxy::validateCommand(const String& commandName, PassRefPtr<ValidateCommandCallback> callback)
653 process()->send(Messages::WebPage::ValidateCommand(commandName, callbackID), m_pageID);
656 void WebPageProxy::executeEditCommand(const String& commandName)
661 process()->send(Messages::WebPage::ExecuteEditCommand(commandName), m_pageID);
    [all...]
  /external/webkit/Source/WebKit/qt/Api/
qwebpage.cpp 567 const char* commandName = editorCommandForWebActions(action);
570 if (commandName) {
571 Editor::Command command = editor->command(commandName);
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebHTMLView.mm     [all...]
  /prebuilts/sdk/tools/lib/
lombok-ast-0.2.jar 
  /prebuilts/tools/common/lombok-ast/
lombok-ast-0.2.1.jar 

Completed in 846 milliseconds

1 2