HomeSort by relevance Sort by last modified time
    Searched refs:smartDelete (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/editing/
MoveSelectionCommand.h 37 static PassRefPtrWillBeRawPtr<MoveSelectionCommand> create(PassRefPtrWillBeRawPtr<DocumentFragment> fragment, const Position& position, bool smartInsert = false, bool smartDelete = false)
39 return adoptRefWillBeNoop(new MoveSelectionCommand(fragment, position, smartInsert, smartDelete));
45 MoveSelectionCommand(PassRefPtrWillBeRawPtr<DocumentFragment>, const Position&, bool smartInsert, bool smartDelete);
DeleteSelectionCommand.h 37 static PassRefPtrWillBeRawPtr<DeleteSelectionCommand> create(Document& document, bool smartDelete = false, bool mergeBlocksAfterDelete = true, bool expandForSpecialElements = false, bool sanitizeMarkup = true)
39 return adoptRefWillBeNoop(new DeleteSelectionCommand(document, smartDelete, mergeBlocksAfterDelete, expandForSpecialElements, sanitizeMarkup));
41 static PassRefPtrWillBeRawPtr<DeleteSelectionCommand> create(const VisibleSelection& selection, bool smartDelete = false, bool mergeBlocksAfterDelete = true, bool expandForSpecialElements = false, bool sanitizeMarkup = true)
43 return adoptRefWillBeNoop(new DeleteSelectionCommand(selection, smartDelete, mergeBlocksAfterDelete, expandForSpecialElements, sanitizeMarkup));
49 DeleteSelectionCommand(Document&, bool smartDelete, bool mergeBlocksAfterDelete, bool expandForSpecialElements, bool santizeMarkup);
50 DeleteSelectionCommand(const VisibleSelection&, bool smartDelete, bool mergeBlocksAfterDelete, bool expandForSpecialElements, bool sanitizeMarkup);
TypingCommand.h 56 SmartDelete = 1 << 4
77 void deleteSelection(bool smartDelete);
93 void setSmartDelete(bool smartDelete) { m_smartDelete = smartDelete; }
MoveSelectionCommand.cpp 34 MoveSelectionCommand::MoveSelectionCommand(PassRefPtrWillBeRawPtr<DocumentFragment> fragment, const Position& position, bool smartInsert, bool smartDelete)
35 : CompositeEditCommand(*position.document()), m_fragment(fragment), m_position(position), m_smartInsert(smartInsert), m_smartDelete(smartDelete)
CompositeEditCommand.h 102 void deleteSelection(bool smartDelete = false, bool mergeBlocksAfterDelete = true, bool expandForSpecialElements = true, bool sanitizeMarkup = true);
103 void deleteSelection(const VisibleSelection&, bool smartDelete = false, bool mergeBlocksAfterDelete = true, bool expandForSpecialElements = true, bool sanitizeMarkup = true);
DeleteSelectionCommand.cpp 64 DeleteSelectionCommand::DeleteSelectionCommand(Document& document, bool smartDelete, bool mergeBlocksAfterDelete, bool expandForSpecialElements, bool sanitizeMarkup)
67 , m_smartDelete(smartDelete)
81 DeleteSelectionCommand::DeleteSelectionCommand(const VisibleSelection& selection, bool smartDelete, bool mergeBlocksAfterDelete, bool expandForSpecialElements, bool sanitizeMarkup)
84 , m_smartDelete(smartDelete)
    [all...]
Editor.h 123 void deleteSelectionWithSmartDelete(bool smartDelete);
TypingCommand.cpp 84 , m_smartDelete(options & SmartDelete)
105 lastTypingCommand->deleteSelection(options & SmartDelete);
598 void TypingCommand::deleteSelection(bool smartDelete)
600 CompositeEditCommand::deleteSelection(smartDelete);
CompositeEditCommand.cpp 557 void CompositeEditCommand::deleteSelection(bool smartDelete, bool mergeBlocksAfterDelete, bool expandForSpecialElements, bool sanitizeMarkup)
560 applyCommandToComposite(DeleteSelectionCommand::create(document(), smartDelete, mergeBlocksAfterDelete, expandForSpecialElements, sanitizeMarkup));
563 void CompositeEditCommand::deleteSelection(const VisibleSelection &selection, bool smartDelete, bool mergeBlocksAfterDelete, bool expandForSpecialElements, bool sanitizeMarkup)
566 applyCommandToComposite(DeleteSelectionCommand::create(selection, smartDelete, mergeBlocksAfterDelete, expandForSpecialElements, sanitizeMarkup));
    [all...]
Editor.cpp 297 TypingCommand::deleteKeyPressed(*m_frame.document(), canSmartCopyOrDelete() ? TypingCommand::SmartDelete : 0, granularity);
308 options |= TypingCommand::SmartDelete;
335 void Editor::deleteSelectionWithSmartDelete(bool smartDelete)
341 DeleteSelectionCommand::create(*m_frame.document(), smartDelete)->apply();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
DragController.cpp 503 bool smartDelete = innerFrame->editor().smartInsertDeleteEnabled();
504 bool smartInsert = smartDelete && innerFrame->selection().granularity() == WordGranularity && dragData->canSmartReplace();
505 MoveSelectionCommand::create(fragment, dragCaret.base(), smartInsert, smartDelete)->apply();
    [all...]

Completed in 731 milliseconds