Home
last modified time | relevance | path

Searched refs:smartDelete (Results 1 – 11 of 11) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/editing/
DDeleteSelectionCommand.h38 …trWillBeRawPtr<DeleteSelectionCommand> create(Document& document, bool smartDelete = false, bool m…
40 …return adoptRefWillBeNoop(new DeleteSelectionCommand(document, smartDelete, mergeBlocksAfterDelete…
42 …DeleteSelectionCommand> create(const VisibleSelection& selection, bool smartDelete = false, bool m…
44 …return adoptRefWillBeNoop(new DeleteSelectionCommand(selection, smartDelete, mergeBlocksAfterDelet…
50 …DeleteSelectionCommand(Document&, bool smartDelete, bool mergeBlocksAfterDelete, bool expandForSpe…
51 …DeleteSelectionCommand(const VisibleSelection&, bool smartDelete, bool mergeBlocksAfterDelete, boo…
DMoveSelectionCommand.h37 …ntFragment> fragment, const Position& position, bool smartInsert = false, bool smartDelete = false)
39 … return adoptRefWillBeNoop(new MoveSelectionCommand(fragment, position, smartInsert, smartDelete));
45 …and(PassRefPtrWillBeRawPtr<DocumentFragment>, const Position&, bool smartInsert, bool smartDelete);
DTypingCommand.h77 void deleteSelection(bool smartDelete);
93 void setSmartDelete(bool smartDelete) { m_smartDelete = smartDelete; } in setSmartDelete() argument
DMoveSelectionCommand.cpp34 …lBeRawPtr<DocumentFragment> fragment, const Position& position, bool smartInsert, bool smartDelete) in MoveSelectionCommand() argument
35 … m_fragment(fragment), m_position(position), m_smartInsert(smartInsert), m_smartDelete(smartDelete) in MoveSelectionCommand()
DCompositeEditCommand.h104 …void deleteSelection(bool smartDelete = false, bool mergeBlocksAfterDelete = true, bool expandForS…
105 …void deleteSelection(const VisibleSelection&, bool smartDelete = false, bool mergeBlocksAfterDelet…
DDeleteSelectionCommand.cpp68 DeleteSelectionCommand::DeleteSelectionCommand(Document& document, bool smartDelete, bool mergeBloc… in DeleteSelectionCommand() argument
71 , m_smartDelete(smartDelete) in DeleteSelectionCommand()
85 DeleteSelectionCommand::DeleteSelectionCommand(const VisibleSelection& selection, bool smartDelete,… in DeleteSelectionCommand() argument
88 , m_smartDelete(smartDelete) in DeleteSelectionCommand()
DEditor.h110 void deleteSelectionWithSmartDelete(bool smartDelete);
DTypingCommand.cpp603 void TypingCommand::deleteSelection(bool smartDelete) in deleteSelection() argument
605 CompositeEditCommand::deleteSelection(smartDelete); in deleteSelection()
DCompositeEditCommand.cpp568 void CompositeEditCommand::deleteSelection(bool smartDelete, bool mergeBlocksAfterDelete, bool expa… in deleteSelection() argument
571 …applyCommandToComposite(DeleteSelectionCommand::create(document(), smartDelete, mergeBlocksAfterDe… in deleteSelection()
574 void CompositeEditCommand::deleteSelection(const VisibleSelection &selection, bool smartDelete, boo… in deleteSelection() argument
577 …applyCommandToComposite(DeleteSelectionCommand::create(selection, smartDelete, mergeBlocksAfterDel… in deleteSelection()
DEditor.cpp336 void Editor::deleteSelectionWithSmartDelete(bool smartDelete) in deleteSelectionWithSmartDelete() argument
342 DeleteSelectionCommand::create(*frame().document(), smartDelete)->apply(); in deleteSelectionWithSmartDelete()
/external/chromium_org/third_party/WebKit/Source/core/page/
DDragController.cpp504 bool smartDelete = innerFrame->editor().smartInsertDeleteEnabled(); in concludeEditDrag() local
505 …bool smartInsert = smartDelete && innerFrame->selection().granularity() == WordGranularity && drag… in concludeEditDrag()
506 … MoveSelectionCommand::create(fragment, dragCaret.base(), smartInsert, smartDelete)->apply(); in concludeEditDrag()