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 void setSmartDelete(bool smartDelete) { m_smartDelete = smartDelete; }
TypingCommand.cpp 84 , m_smartDelete(options & SmartDelete)
105 lastTypingCommand->deleteSelection(options & SmartDelete);
603 void TypingCommand::deleteSelection(bool smartDelete)
605 CompositeEditCommand::deleteSelection(smartDelete);
Editor.cpp 298 TypingCommand::deleteKeyPressed(*frame().document(), canSmartCopyOrDelete() ? TypingCommand::SmartDelete : 0, granularity);
309 options |= TypingCommand::SmartDelete;
336 void Editor::deleteSelectionWithSmartDelete(bool smartDelete)
342 DeleteSelectionCommand::create(*frame().document(), smartDelete)->apply();
    [all...]
EditorCommand.cpp 344 TypingCommand::deleteKeyPressed(*frame.document(), frame.selection().granularity() == WordGranularity ? TypingCommand::SmartDelete : 0);
    [all...]

Completed in 163 milliseconds