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

  /external/webkit/WebCore/editing/
DeleteSelectionCommand.h 35 static PassRefPtr<DeleteSelectionCommand> create(Document* document, bool smartDelete = false, bool mergeBlocksAfterDelete = true, bool replace = false, bool expandForSpecialElements = false)
37 return adoptRef(new DeleteSelectionCommand(document, smartDelete, mergeBlocksAfterDelete, replace, expandForSpecialElements));
39 static PassRefPtr<DeleteSelectionCommand> create(const VisibleSelection& selection, bool smartDelete = false, bool mergeBlocksAfterDelete = true, bool replace = false, bool expandForSpecialElements = false)
41 return adoptRef(new DeleteSelectionCommand(selection, smartDelete, mergeBlocksAfterDelete, replace, expandForSpecialElements));
45 DeleteSelectionCommand(Document*, bool smartDelete, bool mergeBlocksAfterDelete, bool replace, bool expandForSpecialElements);
46 DeleteSelectionCommand(const VisibleSelection&, bool smartDelete, bool mergeBlocksAfterDelete, bool replace, bool expandForSpecialElements);
TypingCommand.h 45 static void deleteSelection(Document*, bool smartDelete = false);
46 static void deleteKeyPressed(Document*, bool smartDelete = false, TextGranularity = CharacterGranularity, bool killRing = false);
47 static void forwardDeleteKeyPressed(Document*, bool smartDelete = false, TextGranularity = CharacterGranularity, bool killRing = false);
66 void deleteSelection(bool smartDelete);
76 bool smartDelete() const { return m_smartDelete; }
77 void setSmartDelete(bool smartDelete) { m_smartDelete = smartDelete; }
TypingCommand.cpp 64 void TypingCommand::deleteSelection(Document* document, bool smartDelete)
76 static_cast<TypingCommand*>(lastEditCommand)->deleteSelection(smartDelete);
81 typingCommand->setSmartDelete(smartDelete);
85 void TypingCommand::deleteKeyPressed(Document *document, bool smartDelete, TextGranularity granularity, bool killRing)
99 typingCommand->setSmartDelete(smartDelete);
103 void TypingCommand::forwardDeleteKeyPressed(Document *document, bool smartDelete, TextGranularity granularity, bool killRing)
118 typingCommand->setSmartDelete(smartDelete);
591 void TypingCommand::deleteSelection(bool smartDelete)
593 CompositeEditCommand::deleteSelection(smartDelete);
CompositeEditCommand.h 55 void deleteSelection(bool smartDelete = false, bool mergeBlocksAfterDelete = true, bool replace = false, bool expandForSpecialElements = true);
56 void deleteSelection(const VisibleSelection&, bool smartDelete = false, bool mergeBlocksAfterDelete = true, bool replace = false, bool expandForSpecialElements = true);
DeleteSelectionCommand.cpp 76 DeleteSelectionCommand::DeleteSelectionCommand(Document *document, bool smartDelete, bool mergeBlocksAfterDelete, bool replace, bool expandForSpecialElements)
79 m_smartDelete(smartDelete),
92 DeleteSelectionCommand::DeleteSelectionCommand(const VisibleSelection& selection, bool smartDelete, bool mergeBlocksAfterDelete, bool replace, bool expandForSpecialElements)
95 m_smartDelete(smartDelete),
    [all...]
Editor.h 136 void deleteSelectionWithSmartDelete(bool smartDelete);
CompositeEditCommand.cpp 361 void CompositeEditCommand::deleteSelection(bool smartDelete, bool mergeBlocksAfterDelete, bool replace, bool expandForSpecialElements)
364 applyCommandToComposite(DeleteSelectionCommand::create(document(), smartDelete, mergeBlocksAfterDelete, replace, expandForSpecialElements));
367 void CompositeEditCommand::deleteSelection(const VisibleSelection &selection, bool smartDelete, bool mergeBlocksAfterDelete, bool replace, bool expandForSpecialElements)
370 applyCommandToComposite(DeleteSelectionCommand::create(selection, smartDelete, mergeBlocksAfterDelete, replace, expandForSpecialElements));
    [all...]
Editor.cpp 265 void Editor::deleteSelectionWithSmartDelete(bool smartDelete)
270 applyCommand(DeleteSelectionCommand::create(m_frame->document(), smartDelete));
    [all...]

Completed in 3791 milliseconds