HomeSort by relevance Sort by last modified time
    Searched defs:DeleteSelectionCommand (Results 1 - 2 of 2) sorted by null

  /external/webkit/WebCore/editing/
DeleteSelectionCommand.h 33 class DeleteSelectionCommand : public CompositeEditCommand {
35 static PassRefPtr<DeleteSelectionCommand> create(Document* document, bool smartDelete = false, bool mergeBlocksAfterDelete = true, bool replace = false, bool expandForSpecialElements = false)
37 return adoptRef(new DeleteSelectionCommand(document, smartDelete, mergeBlocksAfterDelete, replace, expandForSpecialElements));
39 static PassRefPtr<DeleteSelectionCommand> create(const VisibleSelection& selection, bool smartDelete = false, bool mergeBlocksAfterDelete = true, bool replace = false, bool expandForSpecialElements = false)
41 return adoptRef(new DeleteSelectionCommand(selection, smartDelete, mergeBlocksAfterDelete, replace, expandForSpecialElements));
45 DeleteSelectionCommand(Document*, bool smartDelete, bool mergeBlocksAfterDelete, bool replace, bool expandForSpecialElements);
46 DeleteSelectionCommand(const VisibleSelection&, bool smartDelete, bool mergeBlocksAfterDelete, bool replace, bool expandForSpecialElements);
DeleteSelectionCommand.cpp 27 #include "DeleteSelectionCommand.h"
76 DeleteSelectionCommand::DeleteSelectionCommand(Document *document, bool smartDelete, bool mergeBlocksAfterDelete, bool replace, bool expandForSpecialElements)
92 DeleteSelectionCommand::DeleteSelectionCommand(const VisibleSelection& selection, bool smartDelete, bool mergeBlocksAfterDelete, bool replace, bool expandForSpecialElements)
109 void DeleteSelectionCommand::initializeStartEnd(Position& start, Position& end)
164 void DeleteSelectionCommand::initializePositionData()
266 void DeleteSelectionCommand::saveTypingStyleState()
291 bool DeleteSelectionCommand::handleSpecialCaseBRDelete()
322 void DeleteSelectionCommand::removeNode(PassRefPtr<Node> node
    [all...]

Completed in 88 milliseconds