OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mergeBlocksAfterDelete
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/editing/
DeleteSelectionCommand.h
37
static PassRefPtr<DeleteSelectionCommand> create(Document& document, bool smartDelete = false, bool
mergeBlocksAfterDelete
= true, bool replace = false, bool expandForSpecialElements = false, bool sanitizeMarkup = true)
39
return adoptRef(new DeleteSelectionCommand(document, smartDelete,
mergeBlocksAfterDelete
, replace, expandForSpecialElements, sanitizeMarkup));
41
static PassRefPtr<DeleteSelectionCommand> create(const VisibleSelection& selection, bool smartDelete = false, bool
mergeBlocksAfterDelete
= true, bool replace = false, bool expandForSpecialElements = false, bool sanitizeMarkup = true)
43
return adoptRef(new DeleteSelectionCommand(selection, smartDelete,
mergeBlocksAfterDelete
, replace, expandForSpecialElements, sanitizeMarkup));
47
DeleteSelectionCommand(Document&, bool smartDelete, bool
mergeBlocksAfterDelete
, bool replace, bool expandForSpecialElements, bool santizeMarkup);
48
DeleteSelectionCommand(const VisibleSelection&, bool smartDelete, bool
mergeBlocksAfterDelete
, bool replace, bool expandForSpecialElements, bool sanitizeMarkup);
CompositeEditCommand.h
100
void deleteSelection(bool smartDelete = false, bool
mergeBlocksAfterDelete
= true, bool replace = false, bool expandForSpecialElements = true, bool sanitizeMarkup = true);
101
void deleteSelection(const VisibleSelection&, bool smartDelete = false, bool
mergeBlocksAfterDelete
= true, bool replace = false, bool expandForSpecialElements = true, bool sanitizeMarkup = true);
DeleteSelectionCommand.cpp
70
DeleteSelectionCommand::DeleteSelectionCommand(Document& document, bool smartDelete, bool
mergeBlocksAfterDelete
, bool replace, bool expandForSpecialElements, bool sanitizeMarkup)
74
, m_mergeBlocksAfterDelete(
mergeBlocksAfterDelete
)
88
DeleteSelectionCommand::DeleteSelectionCommand(const VisibleSelection& selection, bool smartDelete, bool
mergeBlocksAfterDelete
, bool replace, bool expandForSpecialElements, bool sanitizeMarkup)
92
, m_mergeBlocksAfterDelete(
mergeBlocksAfterDelete
)
[
all
...]
CompositeEditCommand.cpp
586
void CompositeEditCommand::deleteSelection(bool smartDelete, bool
mergeBlocksAfterDelete
, bool replace, bool expandForSpecialElements, bool sanitizeMarkup)
589
applyCommandToComposite(DeleteSelectionCommand::create(document(), smartDelete,
mergeBlocksAfterDelete
, replace, expandForSpecialElements, sanitizeMarkup));
592
void CompositeEditCommand::deleteSelection(const VisibleSelection &selection, bool smartDelete, bool
mergeBlocksAfterDelete
, bool replace, bool expandForSpecialElements, bool sanitizeMarkup)
595
applyCommandToComposite(DeleteSelectionCommand::create(selection, smartDelete,
mergeBlocksAfterDelete
, replace, expandForSpecialElements, sanitizeMarkup));
[
all
...]
ReplaceSelectionCommand.cpp
[
all
...]
Completed in 26 milliseconds