HomeSort by relevance Sort by last modified time
    Searched refs:SmartDelete (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/editing/
TypingCommand.h 56 SmartDelete = 1 << 4
77 void deleteSelection(bool smartDelete);
93 bool smartDelete() const { return m_smartDelete; }
94 void setSmartDelete(bool smartDelete) { m_smartDelete = smartDelete; }
TypingCommand.cpp 82 , m_smartDelete(options & SmartDelete)
105 lastTypingCommand->deleteSelection(options & SmartDelete);
598 void TypingCommand::deleteSelection(bool smartDelete)
600 CompositeEditCommand::deleteSelection(smartDelete);
Editor.cpp 302 TypingCommand::deleteKeyPressed(m_frame->document(), canSmartCopyOrDelete() ? TypingCommand::SmartDelete : 0, granularity);
313 options |= TypingCommand::SmartDelete;
338 void Editor::deleteSelectionWithSmartDelete(bool smartDelete)
343 applyCommand(DeleteSelectionCommand::create(m_frame->document(), smartDelete));
    [all...]
EditorCommand.cpp 329 TypingCommand::deleteKeyPressed(frame->document(), frame->selection()->granularity() == WordGranularity ? TypingCommand::SmartDelete : 0);
    [all...]

Completed in 183 milliseconds