HomeSort by relevance Sort by last modified time
    Searched defs:selectionState (Results 1 - 6 of 6) sorted by null

  /external/webkit/WebCore/rendering/
EllipsisBox.h 44 void setSelectionState(RenderObject::SelectionState s) { m_selectionState = s; }
49 virtual RenderObject::SelectionState selectionState() { return m_selectionState; }
55 RenderObject::SelectionState m_selectionState;
InlineBox.cpp 260 RenderObject::SelectionState InlineBox::selectionState()
262 return renderer()->selectionState();
RootInlineBox.cpp 239 RenderObject::SelectionState lineState = selectionState();
267 bool isPreviousBoxSelected = firstBox->selectionState() != RenderObject::SelectionNone;
269 if (box->selectionState() != RenderObject::SelectionNone) {
278 isPreviousBoxSelected = box->selectionState() != RenderObject::SelectionNone;
292 RenderObject::SelectionState RootInlineBox::selectionState()
295 RenderObject::SelectionState state = RenderObject::SelectionNone;
297 RenderObject::SelectionState boxState = box->selectionState();
    [all...]
InlineFlowBox.cpp     [all...]
InlineTextBox.cpp 63 RenderObject::SelectionState InlineTextBox::selectionState()
65 RenderObject::SelectionState state = renderer()->selectionState();
347 bool haveSelection = !isPrinting && paintInfo.phase != PaintPhaseTextClip && selectionState() != RenderObject::SelectionNone;
557 if (renderer()->selectionState() == RenderObject::SelectionInside) {
562 if (renderer()->selectionState() == RenderObject::SelectionStart)
564 else if (renderer()->selectionState() == RenderObject::SelectionEnd)
    [all...]
RenderObject.h 661 enum SelectionState {
670 // descendants (as described above in the SelectionState enum declaration).
671 SelectionState selectionState() const { return static_cast<SelectionState>(m_selectionState);; }
674 virtual void setSelectionState(SelectionState state) { m_selectionState = state; }
    [all...]

Completed in 17 milliseconds