/external/chromium_org/third_party/WebKit/Source/core/editing/ |
D | DeleteSelectionCommand.h | 37 …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…
|
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 | 102 …void deleteSelection(bool smartDelete = false, bool mergeBlocksAfterDelete = true, bool expandForS… 103 …void deleteSelection(const VisibleSelection&, bool smartDelete = false, bool mergeBlocksAfterDelet…
|
D | DeleteSelectionCommand.cpp | 64 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()
|
D | Editor.h | 123 void deleteSelectionWithSmartDelete(bool smartDelete);
|
D | TypingCommand.cpp | 598 void TypingCommand::deleteSelection(bool smartDelete) in deleteSelection() argument 600 CompositeEditCommand::deleteSelection(smartDelete); in deleteSelection()
|
D | CompositeEditCommand.cpp | 557 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()
|
D | Editor.cpp | 335 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/ |
D | DragController.cpp | 503 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()
|