Searched refs:shouldChangeSelection (Results 1 - 11 of 11) sorted by relevance
/external/webkit/Source/WebCore/editing/ |
H A D | SetSelectionCommand.cpp | 45 if (selectionController->shouldChangeSelection(m_selectionToSet) && m_selectionToSet.isNonOrphanedCaretOrRange()) { 56 if (selectionController->shouldChangeSelection(startingSelection()) && startingSelection().isNonOrphanedCaretOrRange())
|
H A D | SpellingCorrectionCommand.cpp | 90 if (!document()->frame()->selection()->shouldChangeSelection(m_selectionToBeCorrected))
|
H A D | SelectionController.h | 165 bool shouldChangeSelection(const VisibleSelection&) const;
|
H A D | SelectionController.cpp | 763 bool change = shouldChangeSelection(trialSelectionController.selection()); 867 bool change = shouldChangeSelection(trialSelectionController.selection()); 1396 if (parent->selection()->shouldChangeSelection(newSelection)) { 1422 if (shouldChangeSelection(newSelection)) 1858 bool SelectionController::shouldChangeSelection(const VisibleSelection& newSelection) const function in class:SelectionController 1860 return m_frame->editor()->shouldChangeSelection(selection(), newSelection, newSelection.affinity(), false);
|
H A D | Editor.h | 359 bool shouldChangeSelection(const VisibleSelection& oldSelection, const VisibleSelection& newSelection, EAffinity, bool stillSelecting) const;
|
H A D | Editor.cpp | 2027 if (!frame()->selection()->shouldChangeSelection(newSelection)) 2264 if (!m_frame->selection()->shouldChangeSelection(selectionToReplace)) 2537 if (!m_frame->selection()->shouldChangeSelection(newSelection)) 2721 // If there is no selection change, don't bother sending shouldChangeSelection, but still call setSelection, 2723 // The old selection can be invalid here and calling shouldChangeSelection can produce some strange calls. 2726 if (selectionDidNotChangeDOMPosition || m_frame->selection()->shouldChangeSelection(newSelection)) { 2799 bool Editor::shouldChangeSelection(const VisibleSelection& oldSelection, const VisibleSelection& newSelection, EAffinity affinity, bool stillSelecting) const function in class:WebCore::Editor
|
/external/webkit/Source/WebCore/page/chromium/ |
H A D | EventHandlerChromium.cpp | 66 if (m_frame->selection()->shouldChangeSelection(newSelection))
|
/external/webkit/Source/WebCore/page/ |
H A D | FocusController.cpp | 301 if (frame->selection()->shouldChangeSelection(newSelection))
|
H A D | EventHandler.cpp | 272 if (selection->selection() != newSelection && selection->shouldChangeSelection(newSelection)) 279 if (selection->selection() != newSelection && selection->shouldChangeSelection(newSelection))
|
/external/webkit/Source/WebKit/chromium/src/ |
H A D | WebFrameImpl.cpp | 1316 if (frame->selection()->shouldChangeSelection(selection)) { 1337 if (frame()->selection()->shouldChangeSelection(selection))
|
/external/webkit/Source/WebCore/dom/ |
H A D | Element.cpp | 1613 if (frame->selection()->shouldChangeSelection(newSelection)) {
|
Completed in 196 milliseconds