/external/chromium_org/third_party/WebKit/Source/core/editing/ |
FrameSelection.cpp | 107 m_selection.setIsDirectional(true); 121 Element* selectionRoot = m_selection.rootEditableElement(); 127 Element* selectionRoot = m_selection.rootEditableElement(); 131 Node* node = m_selection.base().containerNode(); 138 setSelection(VisibleSelection(pos.deepEquivalent(), pos.deepEquivalent(), pos.affinity(), m_selection.isDirectional()), options, align); 151 setSelection(VisibleSelection(pos, affinity, m_selection.isDirectional()), options); 209 if (m_selection.base() == newSelection.base()) 215 if (m_selection == newSelection) 232 m_selection = s; 246 if (!guard->host() && !m_selection.isNonOrphanedCaretOrRange() [all...] |
FrameSelection.h | 93 Element* rootEditableElement() const { return m_selection.rootEditableElement(); } 97 bool hasEditableStyle() const { return m_selection.hasEditableStyle(); } 98 bool isContentEditable() const { return m_selection.isContentEditable(); } 99 bool isContentRichlyEditable() const { return m_selection.isContentRichlyEditable(); } 105 const VisibleSelection& selection() const { return m_selection; } 118 SelectionType selectionType() const { return m_selection.selectionType(); } 120 EAffinity affinity() const { return m_selection.affinity(); } 134 Position base() const { return m_selection.base(); } 135 Position extent() const { return m_selection.extent(); } 136 Position start() const { return m_selection.start(); 269 VisibleSelection m_selection; member in class:blink::FINAL [all...] |
VisibleSelectionTest.cpp | 34 visitor->trace(m_selection); 37 VisibleSelection m_selection; member in class:blink::VisibleSelectionTest::VisibleSelectionWrapper 42 VisibleSelection& selection() { return m_wrap->m_selection; } 50 m_wrap->m_selection.setBase(Position(textNode(), base)); 51 m_wrap->m_selection.setExtent(Position(textNode(), extend));
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
TreeScope.cpp | 93 if (m_selection) { 94 m_selection->clearTreeScope(); 95 m_selection = nullptr; 316 if (m_selection) 317 return m_selection.get(); 322 m_selection = DOMSelection::create(this); 323 return m_selection.get(); 555 visitor->trace(m_selection);
|
TreeScope.h | 193 mutable RefPtrWillBeMember<DOMSelection> m_selection; member in class:blink::TreeScope
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/ |
PropertyTable.java | 138 private int m_selection; field in class:PropertyTable 266 m_selection = verticalBar.getSelection(); 351 int y = m_rowHeight * (newIndex - m_selection); 353 m_selection = newIndex; 356 m_selection = newIndex - m_page + 1; 499 int y = (propertyIndex - m_selection) * m_rowHeight; 615 int y = m_rowHeight * (index - m_selection) + 1; 676 m_selection = Math.max(0, Math.min(m_properties.size() - m_page, m_selection)); 677 verticalBar.setValues(m_selection, 0, m_properties.size(), m_page, 1, m_page) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/frame/ |
LocalFrame.h | 178 const OwnPtrWillBeMember<FrameSelection> m_selection; member in class:blink::LocalFrame 216 return *m_selection;
|
LocalFrame.cpp | 99 , m_selection(FrameSelection::create(this)) 151 visitor->trace(m_selection);
|