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

  /external/webkit/Source/WebCore/editing/
DeleteSelectionCommand.h 35 class DeleteSelectionCommand : public CompositeEditCommand {
37 static PassRefPtr<DeleteSelectionCommand> create(Document* document, bool smartDelete = false, bool mergeBlocksAfterDelete = true, bool replace = false, bool expandForSpecialElements = false)
39 return adoptRef(new DeleteSelectionCommand(document, smartDelete, mergeBlocksAfterDelete, replace, expandForSpecialElements));
41 static PassRefPtr<DeleteSelectionCommand> create(const VisibleSelection& selection, bool smartDelete = false, bool mergeBlocksAfterDelete = true, bool replace = false, bool expandForSpecialElements = false)
43 return adoptRef(new DeleteSelectionCommand(selection, smartDelete, mergeBlocksAfterDelete, replace, expandForSpecialElements));
47 DeleteSelectionCommand(Document*, bool smartDelete, bool mergeBlocksAfterDelete, bool replace, bool expandForSpecialElements);
48 DeleteSelectionCommand(const VisibleSelection&, bool smartDelete, bool mergeBlocksAfterDelete, bool replace, bool expandForSpecialElements);
DeleteSelectionCommand.cpp 27 #include "DeleteSelectionCommand.h"
70 DeleteSelectionCommand::DeleteSelectionCommand(Document *document, bool smartDelete, bool mergeBlocksAfterDelete, bool replace, bool expandForSpecialElements)
87 DeleteSelectionCommand::DeleteSelectionCommand(const VisibleSelection& selection, bool smartDelete, bool mergeBlocksAfterDelete, bool replace, bool expandForSpecialElements)
105 void DeleteSelectionCommand::initializeStartEnd(Position& start, Position& end)
160 void DeleteSelectionCommand::setStartingSelectionOnSmartDelete(const Position& start, const Position& end)
174 void DeleteSelectionCommand::initializePositionData()
271 void DeleteSelectionCommand::saveTypingStyleState()
295 bool DeleteSelectionCommand::handleSpecialCaseBRDelete(
    [all...]

Completed in 26 milliseconds