HomeSort by relevance Sort by last modified time
    Searched full:commandname (Results 1 - 25 of 42) sorted by null

1 2

  /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/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...]
  /system/core/sh/bltin/
bltin.h 74 #define getprogname() commandname
83 #define INITARGS(argv) if ((commandname = argv[0]) == NULL) {fputs("Argc is zero\n", stderr); exit(2);} else
94 extern const char *commandname;
  /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/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/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();
  /system/core/sh/
error.c 71 char *commandname; variable
135 if (commandname)
136 outfmt(&errout, "%s: ", commandname);
eval.h 37 extern char *commandname; /* currently executing command */
options.c 111 commandname = argv[0];
114 commandname = arg0;
eval.c 98 char *commandname; variable
988 savecmdname = commandname;
1010 commandname = argv[0];
1036 commandname = savecmdname;
main.c 376 commandname = fullname;
  /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/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/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/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())
  /frameworks/base/core/java/android/bluetooth/
AtParser.java 300 String commandName = input.substring(index, i);
301 if (!mExtHandlers.containsKey(commandName)) {
307 AtCommandHandler handler = mExtHandlers.get(commandName);
  /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...]
  /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/skia/gm/
gmmain.cpp 673 const char* const commandName = argv[0];
714 usage(commandName);
719 usage(commandName);
  /external/webkit/Source/WebKit2/Scripts/webkit2/
messages_unittest.py 79 InterpretKeyEvent(uint32_t type) -> (Vector<WebCore::KeypressCommand> commandName)
202 ('Vector<WebCore::KeypressCommand>', 'commandName'),
  /external/webkit/Source/WebKit2/UIProcess/
WebPageProxy.h 247 void executeEditCommand(const String& commandName);
248 void validateCommand(const String& commandName, PassRefPtr<ValidateCommandCallback>);
    [all...]

Completed in 918 milliseconds

1 2