/external/chromium_org/third_party/WebKit/Source/core/editing/ |
D | DeleteSelectionCommand.h | 38 …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…
|
D | MoveSelectionCommand.h | 37 …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);
|
D | TypingCommand.h | 77 void deleteSelection(bool smartDelete); 93 void setSmartDelete(bool smartDelete) { m_smartDelete = smartDelete; } in setSmartDelete() argument
|
D | MoveSelectionCommand.cpp | 34 …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()
|
D | CompositeEditCommand.h | 104 …void deleteSelection(bool smartDelete = false, bool mergeBlocksAfterDelete = true, bool expandForS… 105 …void deleteSelection(const VisibleSelection&, bool smartDelete = false, bool mergeBlocksAfterDelet…
|
D | DeleteSelectionCommand.cpp | 68 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()
|
D | Editor.h | 110 void deleteSelectionWithSmartDelete(bool smartDelete);
|
D | TypingCommand.cpp | 603 void TypingCommand::deleteSelection(bool smartDelete) in deleteSelection() argument 605 CompositeEditCommand::deleteSelection(smartDelete); in deleteSelection()
|
D | CompositeEditCommand.cpp | 568 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()
|
D | Editor.cpp | 336 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/ |
D | DragController.cpp | 504 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()
|