HomeSort by relevance Sort by last modified time
    Searched refs:selectionState (Results 1 - 25 of 25) 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;
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...]
InlineBox.cpp 279 RenderObject::SelectionState InlineBox::selectionState() const
281 return renderer().selectionState();
RenderObject.h     [all...]
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))
RenderReplaced.cpp 138 bool drawSelectionTint = selectionState() != SelectionNone && !document().printing();
140 if (selectionState() == SelectionNone)
526 void RenderReplaced::setSelectionState(SelectionState state)
545 SelectionState s = selectionState();
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...]
EllipsisBox.cpp 53 bool haveSelection = !isPrinting && paintInfo.phase != PaintPhaseTextClip && selectionState() != RenderObject::SelectionNone;
InlineTextBox.h 127 virtual RenderObject::SelectionState selectionState() const OVERRIDE FINAL;
RenderView.cpp 449 if ((os->canBeSelectionLeaf() || os == m_selectionStart || os == m_selectionEnd) && os->selectionState() != SelectionNone) {
493 if (o->selectionState() == SelectionNone)
567 if ((os->canBeSelectionLeaf() || os == m_selectionStart || os == m_selectionEnd) && os->selectionState() != SelectionNone) {
624 if ((o->canBeSelectionLeaf() || o == start || o == end) && o->selectionState() != SelectionNone) {
    [all...]
RootInlineBox.h 121 virtual RenderObject::SelectionState selectionState() const OVERRIDE FINAL;
RenderText.cpp     [all...]
InlineBox.h 265 virtual RenderObject::SelectionState selectionState() const;
InlineFlowBox.h 204 virtual RenderObject::SelectionState selectionState() const OVERRIDE;
RenderBlockFlow.cpp     [all...]
RenderBlock.cpp     [all...]
RenderListMarker.cpp     [all...]
InlineFlowBox.cpp     [all...]
RenderBlockLineLayout.cpp 209 if (!rootHasSelectedChildren && box->renderer().selectionState() != RenderObject::SelectionNone)
    [all...]
RenderObject.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/paint/
ListMarkerPainter.cpp 46 if (m_renderListMarker.selectionState() != RenderObject::SelectionNone) {
54 if (m_renderListMarker.selectionState() != RenderObject::SelectionNone) {
  /external/chromium_org/third_party/WebKit/Source/core/page/
TouchAdjustment.cpp 134 if (node->renderer()->selectionState() != RenderObject::SelectionNone)
188 if (textRenderer->selectionState() == RenderObject::SelectionNone)
192 switch (textRenderer->selectionState()) {
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGRootInlineBox.cpp 40 bool hasSelection = !isPrinting && selectionState() != RenderObject::SelectionNone;
SVGInlineTextBox.cpp 200 bool hasSelection = selectionState() != RenderObject::SelectionNone;
255 bool hasSelection = !parentRenderer.document().printing() && selectionState() != RenderObject::SelectionNone;

Completed in 473 milliseconds