Home | History | Annotate | Download | only in rendering

Lines Matching refs:selectionState

884     enum SelectionState {
893 // descendants (as described above in the SelectionState enum declaration).
894 SelectionState selectionState() const { return m_bitfields.selectionState(); }
895 virtual void setSelectionState(SelectionState state) { m_bitfields.setSelectionState(state); }
896 inline void setSelectionStateIfNeeded(SelectionState);
905 bool hasSelectedChildren() const { return selectionState() != SelectionNone; }
1171 unsigned m_selectionState : 3; // SelectionState
1188 ALWAYS_INLINE SelectionState selectionState() const { return static_cast<SelectionState>(m_selectionState); }
1189 ALWAYS_INLINE void setSelectionState(SelectionState selectionState) { m_selectionState = selectionState; }
1325 inline void RenderObject::setSelectionStateIfNeeded(SelectionState state)
1327 if (selectionState() == state)