Home
last modified time | relevance | path

Searched refs:m_selection (Results 1 – 12 of 12) sorted by relevance

/external/webkit/Source/WebCore/editing/
DSelectionController.cpp145 m_selection = s; in setSelection()
152 m_selection = s; in setSelection()
172 if (m_selection == s) { in setSelection()
178 VisibleSelection oldSelection = m_selection; in setSelection()
180 m_selection = s; in setSelection()
235 …on(node, removingNodeRemovesPosition(node, m_selection.base()), removingNodeRemovesPosition(node, in nodeWillBeRemoved()
236 …removingNodeRemovesPosition(node, m_selection.start()), removingNodeRemovesPosition(node, m_select… in nodeWillBeRemoved()
253 if (m_selection.isBaseFirst()) in respondToNodeModification()
254 m_selection.setWithoutValidation(m_selection.start(), m_selection.end()); in respondToNodeModification()
256 m_selection.setWithoutValidation(m_selection.end(), m_selection.start()); in respondToNodeModification()
[all …]
DSelectionController.h67 Element* rootEditableElement() const { return m_selection.rootEditableElement(); } in rootEditableElement()
68 bool isContentEditable() const { return m_selection.isContentEditable(); } in isContentEditable()
69 bool isContentRichlyEditable() const { return m_selection.isContentRichlyEditable(); } in isContentRichlyEditable()
70 Node* shadowTreeRootNode() const { return m_selection.shadowTreeRootNode(); } in shadowTreeRootNode()
78 const VisibleSelection& selection() const { return m_selection; } in selection()
90 VisibleSelection::SelectionType selectionType() const { return m_selection.selectionType(); } in selectionType()
92 EAffinity affinity() const { return m_selection.affinity(); } in affinity()
106 Position base() const { return m_selection.base(); } in base()
107 Position extent() const { return m_selection.extent(); } in extent()
108 Position start() const { return m_selection.start(); } in start()
[all …]
/external/webkit/Source/WebKit/wx/
DWebDOMSelection.cpp47 m_selection = other.m_selection; in IMPLEMENT_DYNAMIC_CLASS()
52 if (m_selection) in GetRootEditableElement()
53 return new WebDOMElement(m_selection->rootEditableElement()); in GetRootEditableElement()
60 if (m_selection) { in GetAsRange()
61 WTF::RefPtr<WebCore::Range> range = m_selection->toNormalizedRange(); in GetAsRange()
DWebDOMSelection.h55 : m_selection(selection) in wxWebKitSelection()
59 ~wxWebKitSelection() { m_selection = 0; } in ~wxWebKitSelection()
65 WebCore::SelectionController* m_selection;
/external/webkit/Source/WebCore/editing/gtk/
DSelectionControllerGtk.cpp84 if (!m_selection.start().isNotNull() || !m_selection.end().isNotNull()) in notifyAccessibilityForSelectionChange()
87 RenderObject* focusedNode = m_selection.end().deprecatedNode()->renderer(); in notifyAccessibilityForSelectionChange()
101 emitTextSelectionChange(object.get(), m_selection, offset); in notifyAccessibilityForSelectionChange()
/external/webkit/Source/WebCore/editing/chromium/
DSelectionControllerChromium.cpp42 …if (AXObjectCache::accessibilityEnabled() && m_selection.start().isNotNull() && m_selection.end().… in notifyAccessibilityForSelectionChange()
44 …document->axObjectCache()->postNotification(m_selection.start().deprecatedNode()->renderer(), AXOb… in notifyAccessibilityForSelectionChange()
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
DPropertyTable.java136 private int m_selection; field in PropertyTable
264 m_selection = verticalBar.getSelection(); in handleVerticalScrolling()
349 int y = m_rowHeight * (newIndex - m_selection); in navigate()
351 m_selection = newIndex; in navigate()
354 m_selection = newIndex - m_page + 1; in navigate()
497 int y = (propertyIndex - m_selection) * m_rowHeight; in updateTooltip()
595 int y = m_rowHeight * (index - m_selection) + 1; in setActiveEditorBounds()
656 m_selection = Math.max(0, Math.min(m_properties.size() - m_page, m_selection)); in configureScrolling()
657 verticalBar.setValues(m_selection, 0, m_properties.size(), m_page, 1, m_page); in configureScrolling()
715 return m_selection + y / m_rowHeight; in getPropertyIndex()
[all …]
/external/webkit/Source/WebCore/editing/mac/
DSelectionControllerMac.mm53 …if (AXObjectCache::accessibilityEnabled() && m_selection.start().isNotNull() && m_selection.end().…
54 …document->axObjectCache()->postNotification(m_selection.start().deprecatedNode()->renderer(), AXOb…
57 if (!UAZoomEnabled() || !m_selection.isCaret())
/external/webkit/Source/WebCore/page/
DDOMWindow.cpp433 if (m_selection) in clear()
434 m_selection->disconnectFrame(); in clear()
435 m_selection = 0; in clear()
859 if (!m_selection) in getSelection()
860 m_selection = DOMSelection::create(m_frame); in getSelection()
861 return m_selection.get(); in getSelection()
DDOMWindow.h345 DOMSelection* optionalSelection() const { return m_selection.get(); } in optionalSelection()
458 mutable RefPtr<DOMSelection> m_selection; variable
/external/webkit/Source/WebCore/
DChangeLog49898 when m_selection = s.
55748 to setSelection instead of directly modifying m_selection to notify all the clients.
55765 the selection instead of modifying m_selection directly.
DChangeLog-2010-01-2918699 Renamed m_sel to m_selection. Used do-webcore-rename.