OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:smartdelete
(Results
1 - 12
of
12
) sorted by null
/external/webkit/Source/WebCore/editing/
DeleteSelectionCommand.h
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);
MoveSelectionCommand.h
37
static PassRefPtr<MoveSelectionCommand> create(PassRefPtr<DocumentFragment> fragment, const Position& position, bool smartInsert = false, bool
smartDelete
= false)
39
return adoptRef(new MoveSelectionCommand(fragment, position, smartInsert,
smartDelete
));
43
MoveSelectionCommand(PassRefPtr<DocumentFragment>, const Position&, bool smartInsert, bool
smartDelete
);
TypingCommand.h
56
SmartDelete
= 1 << 4
81
void deleteSelection(bool
smartDelete
);
97
bool
smartDelete
() const { return m_smartDelete; }
98
void setSmartDelete(bool
smartDelete
) { m_smartDelete =
smartDelete
; }
MoveSelectionCommand.cpp
34
MoveSelectionCommand::MoveSelectionCommand(PassRefPtr<DocumentFragment> fragment, const Position& position, bool smartInsert, bool
smartDelete
)
35
: CompositeEditCommand(position.anchorNode()->document()), m_fragment(fragment), m_position(position), m_smartInsert(smartInsert), m_smartDelete(
smartDelete
)
CompositeEditCommand.h
58
void deleteSelection(bool
smartDelete
= false, bool mergeBlocksAfterDelete = true, bool replace = false, bool expandForSpecialElements = true);
59
void deleteSelection(const VisibleSelection&, bool
smartDelete
= false, bool mergeBlocksAfterDelete = true, bool replace = false, bool expandForSpecialElements = true);
TypingCommand.cpp
69
, m_smartDelete(options &
SmartDelete
)
94
lastTypingCommand->deleteSelection(options &
SmartDelete
);
648
void TypingCommand::deleteSelection(bool
smartDelete
)
650
CompositeEditCommand::deleteSelection(
smartDelete
);
DeleteSelectionCommand.cpp
70
DeleteSelectionCommand::DeleteSelectionCommand(Document *document, bool
smartDelete
, bool mergeBlocksAfterDelete, bool replace, bool expandForSpecialElements)
73
m_smartDelete(
smartDelete
),
87
DeleteSelectionCommand::DeleteSelectionCommand(const VisibleSelection& selection, bool
smartDelete
, bool mergeBlocksAfterDelete, bool replace, bool expandForSpecialElements)
90
m_smartDelete(
smartDelete
),
[
all
...]
CompositeEditCommand.cpp
371
void CompositeEditCommand::deleteSelection(bool
smartDelete
, bool mergeBlocksAfterDelete, bool replace, bool expandForSpecialElements)
374
applyCommandToComposite(DeleteSelectionCommand::create(document(),
smartDelete
, mergeBlocksAfterDelete, replace, expandForSpecialElements));
377
void CompositeEditCommand::deleteSelection(const VisibleSelection &selection, bool
smartDelete
, bool mergeBlocksAfterDelete, bool replace, bool expandForSpecialElements)
380
applyCommandToComposite(DeleteSelectionCommand::create(selection,
smartDelete
, mergeBlocksAfterDelete, replace, expandForSpecialElements));
[
all
...]
Editor.h
158
void deleteSelectionWithSmartDelete(bool
smartDelete
);
Editor.cpp
298
TypingCommand::deleteKeyPressed(m_frame->document(), canSmartCopyOrDelete() ? TypingCommand::
SmartDelete
: 0, granularity);
309
options |= TypingCommand::
SmartDelete
;
334
void Editor::deleteSelectionWithSmartDelete(bool
smartDelete
)
339
applyCommand(DeleteSelectionCommand::create(m_frame->document(),
smartDelete
));
[
all
...]
EditorCommand.cpp
321
TypingCommand::deleteKeyPressed(frame->document(), frame->selection()->granularity() == WordGranularity ? TypingCommand::
SmartDelete
: 0);
[
all
...]
/external/webkit/Source/WebCore/page/
DragController.cpp
465
bool
smartDelete
= innerFrame->editor()->smartInsertDeleteEnabled();
466
bool smartInsert =
smartDelete
&& innerFrame->selection()->granularity() == WordGranularity && dragData->canSmartReplace();
467
applyCommand(MoveSelectionCommand::create(fragment, dragCaret.base(), smartInsert,
smartDelete
));
[
all
...]
Completed in 939 milliseconds