Home
last modified time | relevance | path

Searched refs:commandName (Results 1 – 11 of 11) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/web/
DWebDevToolsAgentImpl.cpp631 String commandName; in shouldInterruptForMessage() local
632 if (!InspectorBackendDispatcher::getCommandName(message, &commandName)) in shouldInterruptForMessage()
634 …return commandName == InspectorBackendDispatcher::commandName(InspectorBackendDispatcher::kDebugge… in shouldInterruptForMessage()
635 …|| commandName == InspectorBackendDispatcher::commandName(InspectorBackendDispatcher::kDebugger_se… in shouldInterruptForMessage()
636 …|| commandName == InspectorBackendDispatcher::commandName(InspectorBackendDispatcher::kDebugger_se… in shouldInterruptForMessage()
637 …|| commandName == InspectorBackendDispatcher::commandName(InspectorBackendDispatcher::kDebugger_re… in shouldInterruptForMessage()
638 …|| commandName == InspectorBackendDispatcher::commandName(InspectorBackendDispatcher::kDebugger_se… in shouldInterruptForMessage()
639 …|| commandName == InspectorBackendDispatcher::commandName(InspectorBackendDispatcher::kProfiler_st… in shouldInterruptForMessage()
640 …|| commandName == InspectorBackendDispatcher::commandName(InspectorBackendDispatcher::kProfiler_st… in shouldInterruptForMessage()
641 …|| commandName == InspectorBackendDispatcher::commandName(InspectorBackendDispatcher::kHeapProfile… in shouldInterruptForMessage()
DEditorClientImpl.cpp83 void EditorClientImpl::didExecuteCommand(String commandName) in didExecuteCommand() argument
86 m_webView->client()->didExecuteCommand(WebString(commandName)); in didExecuteCommand()
DEditorClientImpl.h55 virtual void didExecuteCommand(String commandName) OVERRIDE;
/external/emma/core/java12/
Demma.java35 final String commandName = args [0]; in main() local
39 … final Command command = Command.create (commandName, "emma ".concat (commandName), commandArgs); in main()
/external/chromium_org/chrome/browser/resources/extensions/
Dextension_command_list.js396 [parsed.extensionId, parsed.commandName, '']);
479 [parsed.extensionId, parsed.commandName, keystroke]);
494 [parsed.extensionId, parsed.commandName, '']);
505 'setCommandScope-' + parsed.extensionId + '-' + parsed.commandName);
507 [parsed.extensionId, parsed.commandName, element.selectedIndex == 1]);
518 createElementId_: function(namespace, extensionId, commandName) { argument
519 return namespace + '-' + extensionId + '-' + commandName;
536 commandName: id.substring(namespace.length + 1 + kExtensionIdLength + 1)
/external/chromium_org/third_party/WebKit/Source/core/editing/
DEditorKeyBindings.cpp233 String commandName = interpretKeyEvent(evt); in handleEditingKeyboardEvent() local
234 Command command = this->command(commandName); in handleEditingKeyboardEvent()
242 if (command.isTextInsertion() || commandName.isEmpty()) in handleEditingKeyboardEvent()
245 client().didExecuteCommand(commandName); in handleEditingKeyboardEvent()
252 client().didExecuteCommand(commandName); in handleEditingKeyboardEvent()
DEditor.h164 Command command(const String& commandName); // Command source is CommandFromMenuOrKeyBinding.
165 Command command(const String& commandName, EditorCommandSource);
166 …static bool commandIsSupportedFromMenuOrKeyBinding(const String& commandName); // Works without a …
DEditorCommand.cpp1635 static const EditorInternalCommand* internalCommand(const String& commandName) in internalCommand() argument
1638 return commandName.isEmpty() ? 0 : commandMap.get(commandName); in internalCommand()
1641 Editor::Command Editor::command(const String& commandName) in command() argument
1643 return Command(internalCommand(commandName), CommandFromMenuOrKeyBinding, &m_frame); in command()
1646 Editor::Command Editor::command(const String& commandName, EditorCommandSource source) in command() argument
1648 return Command(internalCommand(commandName), source, &m_frame); in command()
1651 bool Editor::commandIsSupportedFromMenuOrKeyBinding(const String& commandName) in commandIsSupportedFromMenuOrKeyBinding() argument
1653 return internalCommand(commandName); in commandIsSupportedFromMenuOrKeyBinding()
/external/chromium_org/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/braille/display/
DBrailleInputEvent.java232 public static int stringToCommand(String commandName) { in stringToCommand() argument
233 Integer command = NAMES_TO_CMDS.get(commandName); in stringToCommand()
/external/chromium_org/third_party/WebKit/public/web/
DWebViewClient.h172 virtual void didExecuteCommand(const WebString& commandName) { } in didExecuteCommand() argument
/external/chromium_org/third_party/WebKit/Source/core/dom/
DDocument.cpp4016 static Editor::Command command(Document* document, const String& commandName, bool userInterface = … in command() argument
4023 …return frame->editor().command(commandName, userInterface ? CommandFromDOMWithUserInterface : Comm… in command()
4026 bool Document::execCommand(const String& commandName, bool userInterface, const String& value) in execCommand() argument
4028 return command(this, commandName, userInterface).execute(value); in execCommand()
4031 bool Document::queryCommandEnabled(const String& commandName) in queryCommandEnabled() argument
4033 return command(this, commandName).isEnabled(); in queryCommandEnabled()
4036 bool Document::queryCommandIndeterm(const String& commandName) in queryCommandIndeterm() argument
4038 return command(this, commandName).state() == MixedTriState; in queryCommandIndeterm()
4041 bool Document::queryCommandState(const String& commandName) in queryCommandState() argument
4043 return command(this, commandName).state() == TrueTriState; in queryCommandState()
[all …]