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.h37 …trWillBeRawPtr<DeleteSelectionCommand> create(Document& document, bool smartDelete = false, bool m…
39 …return adoptRefWillBeNoop(new DeleteSelectionCommand(document, smartDelete, mergeBlocksAfterDelete…
41 …DeleteSelectionCommand> create(const VisibleSelection& selection, bool smartDelete = false, bool m…
43 …return adoptRefWillBeNoop(new DeleteSelectionCommand(selection, smartDelete, mergeBlocksAfterDelet…
49 …DeleteSelectionCommand(Document&, bool smartDelete, bool mergeBlocksAfterDelete, bool expandForSpe…
50 …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.h102 …void deleteSelection(bool smartDelete = false, bool mergeBlocksAfterDelete = true, bool expandForS…
103 …void deleteSelection(const VisibleSelection&, bool smartDelete = false, bool mergeBlocksAfterDelet…
DDeleteSelectionCommand.cpp64 DeleteSelectionCommand::DeleteSelectionCommand(Document& document, bool smartDelete, bool mergeBloc… in DeleteSelectionCommand() argument
67 , m_smartDelete(smartDelete) in DeleteSelectionCommand()
81 DeleteSelectionCommand::DeleteSelectionCommand(const VisibleSelection& selection, bool smartDelete,… in DeleteSelectionCommand() argument
84 , m_smartDelete(smartDelete) in DeleteSelectionCommand()
DEditor.h123 void deleteSelectionWithSmartDelete(bool smartDelete);
DTypingCommand.cpp598 void TypingCommand::deleteSelection(bool smartDelete) in deleteSelection() argument
600 CompositeEditCommand::deleteSelection(smartDelete); in deleteSelection()
DCompositeEditCommand.cpp557 void CompositeEditCommand::deleteSelection(bool smartDelete, bool mergeBlocksAfterDelete, bool expa… in deleteSelection() argument
560 …applyCommandToComposite(DeleteSelectionCommand::create(document(), smartDelete, mergeBlocksAfterDe… in deleteSelection()
563 void CompositeEditCommand::deleteSelection(const VisibleSelection &selection, bool smartDelete, boo… in deleteSelection() argument
566 …applyCommandToComposite(DeleteSelectionCommand::create(selection, smartDelete, mergeBlocksAfterDel… in deleteSelection()
DEditor.cpp335 void Editor::deleteSelectionWithSmartDelete(bool smartDelete) in deleteSelectionWithSmartDelete() argument
341 DeleteSelectionCommand::create(*m_frame.document(), smartDelete)->apply(); in deleteSelectionWithSmartDelete()
/external/chromium_org/third_party/WebKit/Source/core/page/
DDragController.cpp503 bool smartDelete = innerFrame->editor().smartInsertDeleteEnabled(); in concludeEditDrag() local
504 …bool smartInsert = smartDelete && innerFrame->selection().granularity() == WordGranularity && drag… in concludeEditDrag()
505 … MoveSelectionCommand::create(fragment, dragCaret.base(), smartInsert, smartDelete)->apply(); in concludeEditDrag()