Home | History | Annotate | Download | only in rendering

Lines Matching refs:SelectionState

902     enum SelectionState {
911 // descendants (as described above in the SelectionState enum declaration).
912 SelectionState selectionState() const { return m_bitfields.selectionState(); }
913 virtual void setSelectionState(SelectionState state) { m_bitfields.setSelectionState(state); }
914 inline void setSelectionStateIfNeeded(SelectionState);
922 bool hasSelectedChildren() const { return selectionState() != SelectionNone; }
1290 unsigned m_selectionState : 3; // SelectionState
1306 ALWAYS_INLINE SelectionState selectionState() const { return static_cast<SelectionState>(m_selectionState); }
1307 ALWAYS_INLINE void setSelectionState(SelectionState selectionState) { m_selectionState = selectionState; }
1470 inline void RenderObject::setSelectionStateIfNeeded(SelectionState state)
1472 if (selectionState() == state)