HomeSort by relevance Sort by last modified time
    Searched refs:SelectionState (Results 1 - 24 of 24) sorted by null

  /external/webkit/Source/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;
RenderSelectionInfo.h 46 , m_state(o->selectionState())
52 RenderObject::SelectionState state() const { return m_state; }
57 RenderObject::SelectionState m_state;
RenderReplaced.h 46 virtual void setSelectionState(SelectionState);
RenderListMarker.h 67 virtual void setSelectionState(SelectionState);
RenderWidget.h 69 virtual void setSelectionState(SelectionState);
InlineTextBox.h 117 virtual RenderObject::SelectionState selectionState();
RenderText.h 98 virtual void setSelectionState(SelectionState s);
RootInlineBox.h 104 virtual RenderObject::SelectionState selectionState();
RenderReplaced.cpp 130 bool drawSelectionTint = selectionState() != SelectionNone && !document()->printing();
132 if (selectionState() == SelectionNone)
345 void RenderReplaced::setSelectionState(SelectionState s)
357 SelectionState s = selectionState();
InlineBox.cpp 264 RenderObject::SelectionState InlineBox::selectionState()
266 return renderer()->selectionState();
InlineBox.h 289 virtual RenderObject::SelectionState selectionState();
RenderBoxModelObject.h 133 virtual void setSelectionState(SelectionState s);
RenderObject.h 674 enum SelectionState {
683 // descendants (as described above in the SelectionState enum declaration).
684 SelectionState selectionState() const { return static_cast<SelectionState>(m_selectionState);; }
687 virtual void setSelectionState(SelectionState state) { m_selectionState = state; }
    [all...]
RootInlineBox.cpp 310 RenderObject::SelectionState lineState = selectionState();
336 bool isPreviousBoxSelected = firstBox->selectionState() != RenderObject::SelectionNone;
338 if (box->selectionState() != RenderObject::SelectionNone) {
352 isPreviousBoxSelected = box->selectionState() != RenderObject::SelectionNone;
359 RenderObject::SelectionState RootInlineBox::selectionState()
362 RenderObject::SelectionState state = RenderObject::SelectionNone;
364 RenderObject::SelectionState boxState = box->selectionState();
    [all...]
InlineFlowBox.h 182 virtual RenderObject::SelectionState selectionState();
RenderWidget.cpp 378 void RenderWidget::setSelectionState(SelectionState state)
380 if (selectionState() != state) {
InlineTextBox.cpp 119 RenderObject::SelectionState InlineTextBox::selectionState()
121 RenderObject::SelectionState state = renderer()->selectionState();
490 bool haveSelection = !isPrinting && paintInfo.phase != PaintPhaseTextClip && selectionState() != RenderObject::SelectionNone;
    [all...]
RenderBlock.h 128 void getSelectionGapInfo(SelectionState, bool& leftGap, bool& rightGap);
    [all...]
InlineFlowBox.cpp     [all...]
RenderListMarker.cpp     [all...]
RenderText.cpp     [all...]
RenderBoxModelObject.cpp 212 void RenderBoxModelObject::setSelectionState(SelectionState s)
214 if (selectionState() == s)
217 if (s == SelectionInside && selectionState() != SelectionNone)
220 if ((s == SelectionStart && selectionState() == SelectionEnd)
221 || (s == SelectionEnd && selectionState() == SelectionStart))
    [all...]
RenderObject.cpp     [all...]
RenderBlock.cpp     [all...]

Completed in 364 milliseconds