Command 4191 Source/core/dom/Document.cpp static Editor::Command command(Document* document, const String& commandName, bool userInterface = false) Command 4195 Source/core/dom/Document.cpp return Editor::Command(); Command 136 Source/core/editing/Editor.h class Command { Command 138 Source/core/editing/Editor.h Command(); Command 139 Source/core/editing/Editor.h Command(const EditorInternalCommand*, EditorCommandSource, PassRefPtr<LocalFrame>); Command 157 Source/core/editing/Editor.h Command command(const String& commandName); // Command source is CommandFromMenuOrKeyBinding. Command 158 Source/core/editing/Editor.h Command command(const String& commandName, EditorCommandSource); Command 1651 Source/core/editing/EditorCommand.cpp Editor::Command Editor::command(const String& commandName) Command 1653 Source/core/editing/EditorCommand.cpp return Command(internalCommand(commandName), CommandFromMenuOrKeyBinding, &m_frame); Command 1656 Source/core/editing/EditorCommand.cpp Editor::Command Editor::command(const String& commandName, EditorCommandSource source) Command 1658 Source/core/editing/EditorCommand.cpp return Command(internalCommand(commandName), source, &m_frame); Command 1661 Source/core/editing/EditorCommand.cpp Editor::Command::Command() Command 1666 Source/core/editing/EditorCommand.cpp Editor::Command::Command(const EditorInternalCommand* command, EditorCommandSource source, PassRefPtr<LocalFrame> frame) Command 1678 Source/core/editing/EditorCommand.cpp bool Editor::Command::execute(const String& parameter, Event* triggeringEvent) const Command 1690 Source/core/editing/EditorCommand.cpp bool Editor::Command::execute(Event* triggeringEvent) const Command 1695 Source/core/editing/EditorCommand.cpp bool Editor::Command::isSupported() const Command 1710 Source/core/editing/EditorCommand.cpp bool Editor::Command::isEnabled(Event* triggeringEvent) const Command 1717 Source/core/editing/EditorCommand.cpp TriState Editor::Command::state(Event* triggeringEvent) const Command 1724 Source/core/editing/EditorCommand.cpp String Editor::Command::value(Event* triggeringEvent) const Command 1733 Source/core/editing/EditorCommand.cpp bool Editor::Command::isTextInsertion() const Command 45 Source/core/editing/EditorKeyBindings.cpp Command command = this->command(commandName);