OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:smartInsert
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/editing/
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);
MoveSelectionCommand.cpp
34
MoveSelectionCommand::MoveSelectionCommand(PassRefPtr<DocumentFragment> fragment, const Position& position, bool
smartInsert
, bool smartDelete)
35
: CompositeEditCommand(*position.document()), m_fragment(fragment), m_position(position), m_smartInsert(
smartInsert
), m_smartDelete(smartDelete)
/external/chromium_org/third_party/WebKit/Source/core/page/
DragController.cpp
506
bool
smartInsert
= smartDelete && innerFrame->selection().granularity() == WordGranularity && dragData->canSmartReplace();
507
MoveSelectionCommand::create(fragment, dragCaret.base(),
smartInsert
, smartDelete)->apply();
[
all
...]
Completed in 387 milliseconds