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
void setSmartDelete(bool
smartDelete
) { m_smartDelete =
smartDelete
; }
TypingCommand.cpp
84
, m_smartDelete(options &
SmartDelete
)
105
lastTypingCommand->deleteSelection(options &
SmartDelete
);
598
void TypingCommand::deleteSelection(bool
smartDelete
)
600
CompositeEditCommand::deleteSelection(
smartDelete
);
Editor.cpp
297
TypingCommand::deleteKeyPressed(*m_frame.document(), canSmartCopyOrDelete() ? TypingCommand::
SmartDelete
: 0, granularity);
308
options |= TypingCommand::
SmartDelete
;
335
void Editor::deleteSelectionWithSmartDelete(bool
smartDelete
)
341
DeleteSelectionCommand::create(*m_frame.document(),
smartDelete
)->apply();
[
all
...]
EditorCommand.cpp
326
TypingCommand::deleteKeyPressed(*frame.document(), frame.selection().granularity() == WordGranularity ? TypingCommand::
SmartDelete
: 0);
[
all
...]
Completed in 107 milliseconds