/external/webkit/WebCore/editing/ |
D | TypingCommand.h | 45 static void deleteSelection(Document*, bool smartDelete = false); 46 …static void deleteKeyPressed(Document*, bool smartDelete = false, TextGranularity = CharacterGranu… 47 …static void forwardDeleteKeyPressed(Document*, bool smartDelete = false, TextGranularity = Charact… 66 void deleteSelection(bool smartDelete); 76 bool smartDelete() const { return m_smartDelete; } in smartDelete() function 77 void setSmartDelete(bool smartDelete) { m_smartDelete = smartDelete; } in setSmartDelete() argument
|
D | DeleteSelectionCommand.h | 35 …static PassRefPtr<DeleteSelectionCommand> create(Document* document, bool smartDelete = false, boo… 37 …return adoptRef(new DeleteSelectionCommand(document, smartDelete, mergeBlocksAfterDelete, replace,… 39 …static PassRefPtr<DeleteSelectionCommand> create(const Selection& selection, bool smartDelete = fa… 41 …return adoptRef(new DeleteSelectionCommand(selection, smartDelete, mergeBlocksAfterDelete, replace… 45 …DeleteSelectionCommand(Document*, bool smartDelete, bool mergeBlocksAfterDelete, bool replace, boo… 46 …DeleteSelectionCommand(const Selection&, bool smartDelete, bool mergeBlocksAfterDelete, bool repla…
|
D | TypingCommand.cpp | 60 void TypingCommand::deleteSelection(Document* document, bool smartDelete) in deleteSelection() argument 72 static_cast<TypingCommand*>(lastEditCommand)->deleteSelection(smartDelete); in deleteSelection() 77 typingCommand->setSmartDelete(smartDelete); in deleteSelection() 81 void TypingCommand::deleteKeyPressed(Document *document, bool smartDelete, TextGranularity granular… in deleteKeyPressed() argument 95 typingCommand->setSmartDelete(smartDelete); in deleteKeyPressed() 99 void TypingCommand::forwardDeleteKeyPressed(Document *document, bool smartDelete, TextGranularity g… in forwardDeleteKeyPressed() argument 114 typingCommand->setSmartDelete(smartDelete); in forwardDeleteKeyPressed() 534 void TypingCommand::deleteSelection(bool smartDelete) in deleteSelection() argument 536 CompositeEditCommand::deleteSelection(smartDelete); in deleteSelection()
|
D | CompositeEditCommand.h | 54 …void deleteSelection(bool smartDelete = false, bool mergeBlocksAfterDelete = true, bool replace = … 55 …void deleteSelection(const Selection&, bool smartDelete = false, bool mergeBlocksAfterDelete = tru…
|
D | DeleteSelectionCommand.cpp | 76 DeleteSelectionCommand::DeleteSelectionCommand(Document *document, bool smartDelete, bool mergeBloc… in DeleteSelectionCommand() argument 79 m_smartDelete(smartDelete), in DeleteSelectionCommand() 91 DeleteSelectionCommand::DeleteSelectionCommand(const Selection& selection, bool smartDelete, bool m… in DeleteSelectionCommand() argument 94 m_smartDelete(smartDelete), in DeleteSelectionCommand()
|
D | CompositeEditCommand.cpp | 342 void CompositeEditCommand::deleteSelection(bool smartDelete, bool mergeBlocksAfterDelete, bool repl… in deleteSelection() argument 345 …applyCommandToComposite(DeleteSelectionCommand::create(document(), smartDelete, mergeBlocksAfterDe… in deleteSelection() 348 void CompositeEditCommand::deleteSelection(const Selection &selection, bool smartDelete, bool merge… in deleteSelection() argument 351 …applyCommandToComposite(DeleteSelectionCommand::create(selection, smartDelete, mergeBlocksAfterDel… in deleteSelection()
|
D | Editor.h | 136 void deleteSelectionWithSmartDelete(bool smartDelete);
|
D | Editor.cpp | 261 void Editor::deleteSelectionWithSmartDelete(bool smartDelete) in deleteSelectionWithSmartDelete() argument 266 applyCommand(DeleteSelectionCommand::create(m_frame->document(), smartDelete)); in deleteSelectionWithSmartDelete()
|
/external/webkit/WebCore/ |
D | ChangeLog-2005-08-23 | 22227 …* khtml/editing/jsediting.cpp: pass true for smartDelete when the selection granularity is WORD. T… 22276 …* khtml/editing/jsediting.cpp: pass true for smartDelete when the selection granularity is WORD. T… 22371 …* khtml/editing/jsediting.cpp: pass true for smartDelete when the selection granularity is WORD. T… 25468 (khtml::TypingCommand::smartDelete): New accessor. 34887 (khtml::CompositeEditCommandImpl::deleteSelection): take smartDelete arg 34889 (khtml::MoveSelectionCommandImpl::doApply): pass smartMove for smartDelete and smartReplace 35050 (khtml::DeleteSelectionCommand::DeleteSelectionCommand): take smartDelete parameter 35054 (khtml::DeleteSelectionCommandImpl::DeleteSelectionCommandImpl): take smartDelete parameter 35065 (-[WebCoreBridge deleteSelectionWithSmartDelete:]): take smartDelete parameter
|
D | ChangeLog-2008-08-10 | 13394 (WebCore::TypingCommand::smartDelete):
|
/external/webkit/WebKit/mac/ |
D | ChangeLog-2006-02-09 | 11086 … (-[WebHTMLView _deleteRange:preflight:killRing:prepend:smartDeleteOK:]): moved, handle smartDelete
|