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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
EllipsisBox.h 45 void setSelectionState(RenderObject::SelectionState s) { m_selectionState = s; }
52 virtual RenderObject::SelectionState selectionState() const OVERRIDE { return m_selectionState; }
59 RenderObject::SelectionState m_selectionState;
RenderSelectionInfo.h 46 , m_state(o->selectionState())
58 RenderObject::SelectionState state() const { return m_state; }
63 RenderObject::SelectionState m_state;
RenderListMarker.h 79 virtual void setSelectionState(SelectionState) OVERRIDE;
RenderReplaced.h 64 virtual void setSelectionState(SelectionState) OVERRIDE FINAL;
RenderObject.h     [all...]
RootInlineBox.cpp 298 RenderObject::SelectionState lineState = selectionState();
326 bool isPreviousBoxSelected = firstBox->selectionState() != RenderObject::SelectionNone;
328 if (box->selectionState() != RenderObject::SelectionNone) {
342 isPreviousBoxSelected = box->selectionState() != RenderObject::SelectionNone;
349 RenderObject::SelectionState RootInlineBox::selectionState() const
352 RenderObject::SelectionState state = RenderObject::SelectionNone;
354 RenderObject::SelectionState boxState = box->selectionState();
    [all...]
InlineTextBox.h 127 virtual RenderObject::SelectionState selectionState() const OVERRIDE FINAL;
RenderBoxModelObject.h 167 virtual void setSelectionState(SelectionState) OVERRIDE;
RenderText.h 115 virtual void setSelectionState(SelectionState s) OVERRIDE FINAL;
RootInlineBox.h 121 virtual RenderObject::SelectionState selectionState() const OVERRIDE FINAL;
RenderBlock.h 168 void getSelectionGapInfo(SelectionState, bool& leftGap, bool& rightGap) const;
171 virtual void setSelectionState(SelectionState) OVERRIDE;
RenderReplaced.cpp 138 bool drawSelectionTint = selectionState() != SelectionNone && !document().printing();
140 if (selectionState() == SelectionNone)
526 void RenderReplaced::setSelectionState(SelectionState state)
545 SelectionState s = selectionState();
InlineBox.cpp 279 RenderObject::SelectionState InlineBox::selectionState() const
281 return renderer().selectionState();
InlineBox.h 265 virtual RenderObject::SelectionState selectionState() const;
InlineFlowBox.h 204 virtual RenderObject::SelectionState selectionState() const OVERRIDE;
RenderBoxModelObject.cpp 68 void RenderBoxModelObject::setSelectionState(SelectionState state)
70 if (state == SelectionInside && selectionState() != SelectionNone)
73 if ((state == SelectionStart && selectionState() == SelectionEnd)
74 || (state == SelectionEnd && selectionState() == SelectionStart))
InlineTextBox.cpp 155 // See the corresponding code in InlineTextBox::selectionState.
160 RenderObject::SelectionState InlineTextBox::selectionState() const
162 RenderObject::SelectionState state = renderer().selectionState();
408 bool haveSelection = !isPrinting && paintInfo.phase != PaintPhaseTextClip && selectionState() != RenderObject::SelectionNone;
579 if (renderer().selectionState() == RenderObject::SelectionInside) {
584 if (renderer().selectionState() == RenderObject::SelectionStart)
586 else if (renderer().selectionState() == RenderObject::SelectionEnd)
    [all...]
RenderListMarker.cpp     [all...]
RenderBlock.cpp     [all...]
InlineFlowBox.cpp     [all...]
RenderText.cpp     [all...]
RenderObject.cpp     [all...]

Completed in 234 milliseconds