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

  /external/webkit/Source/WebCore/editing/
TypingCommand.h 56 SmartDelete = 1 << 4
81 void deleteSelection(bool smartDelete);
97 bool smartDelete() const { return m_smartDelete; }
98 void setSmartDelete(bool smartDelete) { m_smartDelete = smartDelete; }
TypingCommand.cpp 69 , m_smartDelete(options & SmartDelete)
94 lastTypingCommand->deleteSelection(options & SmartDelete);
648 void TypingCommand::deleteSelection(bool smartDelete)
650 CompositeEditCommand::deleteSelection(smartDelete);
Editor.cpp 298 TypingCommand::deleteKeyPressed(m_frame->document(), canSmartCopyOrDelete() ? TypingCommand::SmartDelete : 0, granularity);
309 options |= TypingCommand::SmartDelete;
334 void Editor::deleteSelectionWithSmartDelete(bool smartDelete)
339 applyCommand(DeleteSelectionCommand::create(m_frame->document(), smartDelete));
    [all...]
EditorCommand.cpp 321 TypingCommand::deleteKeyPressed(frame->document(), frame->selection()->granularity() == WordGranularity ? TypingCommand::SmartDelete : 0);
    [all...]

Completed in 309 milliseconds