HomeSort by relevance Sort by last modified time
    Searched refs:SelectionState (Results 1 - 22 of 22) 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;
RenderSelectionInfo.h 45 , m_state(o->selectionState())
51 RenderObject::SelectionState state() const { return m_state; }
56 RenderObject::SelectionState m_state;
RenderReplaced.h 40 virtual void setSelectionState(SelectionState);
RenderListMarker.h 66 virtual void setSelectionState(SelectionState);
RenderWidget.h 63 virtual void setSelectionState(SelectionState);
InlineTextBox.h 89 virtual RenderObject::SelectionState 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...]
RootInlineBox.h 110 virtual RenderObject::SelectionState selectionState();
RenderText.h 95 virtual void setSelectionState(SelectionState s);
RenderReplaced.cpp 120 bool drawSelectionTint = selectionState() != SelectionNone && !document()->printing();
122 if (selectionState() == SelectionNone)
290 void RenderReplaced::setSelectionState(SelectionState s)
304 SelectionState s = selectionState();
InlineBox.cpp 260 RenderObject::SelectionState InlineBox::selectionState()
262 return renderer()->selectionState();
InlineBox.h 228 virtual RenderObject::SelectionState selectionState();
InlineFlowBox.h 133 virtual RenderObject::SelectionState selectionState();
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...]
RenderBlock.h 113 virtual void setSelectionState(SelectionState s);
122 void getHorizontalSelectionGapInfo(SelectionState, bool& leftGap, bool& rightGap);
RenderWidget.cpp 334 void RenderWidget::setSelectionState(SelectionState state)
336 if (selectionState() != state) {
RenderListMarker.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...]
InlineFlowBox.cpp     [all...]
RenderText.cpp 797 void RenderText::setSelectionState(SelectionState state)
805 if (selectionState() == SelectionStart) {
811 } else if (selectionState() == SelectionEnd)
    [all...]
RenderBlock.cpp     [all...]
RenderObject.cpp     [all...]

Completed in 59 milliseconds