Searched refs:smartInsert (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/editing/
H A DMoveSelectionCommand.h37 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);
H A DMoveSelectionCommand.cpp34 MoveSelectionCommand::MoveSelectionCommand(PassRefPtr<DocumentFragment> fragment, const Position& position, bool smartInsert, bool smartDelete) argument
35 : CompositeEditCommand(position.anchorNode()->document()), m_fragment(fragment), m_position(position), m_smartInsert(smartInsert), m_smartDelete(smartDelete)
/external/webkit/Source/WebCore/page/
H A DDragController.cpp466 bool smartInsert = smartDelete && innerFrame->selection()->granularity() == WordGranularity && dragData->canSmartReplace(); local
467 applyCommand(MoveSelectionCommand::create(fragment, dragCaret.base(), smartInsert, smartDelete));

Completed in 375 milliseconds