Searched defs:selectionController (Results 1 - 3 of 3) sorted by path

/external/webkit/Source/WebCore/editing/
H A DSetSelectionCommand.cpp42 SelectionController* selectionController = document()->frame()->selection(); local
43 ASSERT(selectionController);
45 if (selectionController->shouldChangeSelection(m_selectionToSet) && m_selectionToSet.isNonOrphanedCaretOrRange()) {
46 selectionController->setSelection(m_selectionToSet, m_options);
53 SelectionController* selectionController = document()->frame()->selection(); local
54 ASSERT(selectionController);
56 if (selectionController->shouldChangeSelection(startingSelection()) && startingSelection().isNonOrphanedCaretOrRange())
57 selectionController->setSelection(startingSelection(), m_options);
/external/webkit/Source/WebCore/page/
H A DEventHandler.cpp2257 SelectionController* selectionController = m_frame->selection(); local
2258 Position start = selectionController->selection().start();
2260 if (start.deprecatedNode() && (selectionController->rootEditableElement() || selectionController->isRange())) {
2261 RefPtr<Range> selection = selectionController->toNormalizedRange();
/external/webkit/Source/WebKit/android/jni/
H A DWebViewCore.cpp1497 SelectionController* selectionController = frame->selection(); local
1501 if (selectionController->shouldChangeSelection(selection)) {
1513 selectionController->setSelection(emptySelection);
1515 selectionController->setSelection(selection);

Completed in 173 milliseconds