OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SmartDelete
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/editing/
TypingCommand.h
56
SmartDelete
= 1 << 4
77
void deleteSelection(bool
smartDelete
);
93
bool
smartDelete
() const { return m_smartDelete; }
94
void setSmartDelete(bool
smartDelete
) { m_smartDelete =
smartDelete
; }
TypingCommand.cpp
82
, m_smartDelete(options &
SmartDelete
)
103
lastTypingCommand->deleteSelection(options &
SmartDelete
);
593
void TypingCommand::deleteSelection(bool
smartDelete
)
595
CompositeEditCommand::deleteSelection(
smartDelete
);
Editor.cpp
301
TypingCommand::deleteKeyPressed(*m_frame.document(), canSmartCopyOrDelete() ? TypingCommand::
SmartDelete
: 0, granularity);
312
options |= TypingCommand::
SmartDelete
;
339
void Editor::deleteSelectionWithSmartDelete(bool
smartDelete
)
345
DeleteSelectionCommand::create(*m_frame.document(),
smartDelete
)->apply();
[
all
...]
EditorCommand.cpp
325
TypingCommand::deleteKeyPressed(*frame.document(), frame.selection().granularity() == WordGranularity ? TypingCommand::
SmartDelete
: 0);
[
all
...]
Completed in 34 milliseconds