selectionState    119 Source/core/page/TouchAdjustment.cpp         if (node->renderer()->selectionState() != RenderObject::SelectionNone)
selectionState    173 Source/core/page/TouchAdjustment.cpp         if (textRenderer->selectionState() == RenderObject::SelectionNone)
selectionState    177 Source/core/page/TouchAdjustment.cpp         switch (textRenderer->selectionState()) {
selectionState     56 Source/core/rendering/EllipsisBox.cpp     if (selectionState() != RenderObject::SelectionNone) {
selectionState     52 Source/core/rendering/EllipsisBox.h     virtual RenderObject::SelectionState selectionState() OVERRIDE { return m_selectionState; }
selectionState    288 Source/core/rendering/InlineBox.cpp     return renderer().selectionState();
selectionState    262 Source/core/rendering/InlineBox.h     virtual RenderObject::SelectionState selectionState();
selectionState    202 Source/core/rendering/InlineFlowBox.h     virtual RenderObject::SelectionState selectionState() OVERRIDE;
selectionState    151 Source/core/rendering/InlineTextBox.cpp     RenderObject::SelectionState state = renderer().selectionState();
selectionState    491 Source/core/rendering/InlineTextBox.cpp     bool haveSelection = !isPrinting && paintInfo.phase != PaintPhaseTextClip && selectionState() != RenderObject::SelectionNone;
selectionState    800 Source/core/rendering/InlineTextBox.cpp     if (renderer().selectionState() == RenderObject::SelectionInside) {
selectionState    805 Source/core/rendering/InlineTextBox.cpp         if (renderer().selectionState() == RenderObject::SelectionStart)
selectionState    807 Source/core/rendering/InlineTextBox.cpp         else if (renderer().selectionState() == RenderObject::SelectionEnd)
selectionState    133 Source/core/rendering/InlineTextBox.h     virtual RenderObject::SelectionState selectionState() OVERRIDE FINAL;
selectionState   2174 Source/core/rendering/RenderBlock.cpp     return selectionState() != SelectionNone && style()->visibility() == VISIBLE && isSelectionRoot();
selectionState   2319 Source/core/rendering/RenderBlock.cpp     if (rootBlock == this && (selectionState() != SelectionBoth && selectionState() != SelectionEnd))
selectionState   2332 Source/core/rendering/RenderBlock.cpp     for (curr = firstChildBox(); curr && curr->selectionState() == SelectionNone; curr = curr->nextSiblingBox()) { }
selectionState   2335 Source/core/rendering/RenderBlock.cpp         SelectionState childState = curr->selectionState();
selectionState   2607 Source/core/rendering/RenderBlockFlow.cpp     bool containsStart = selectionState() == SelectionStart || selectionState() == SelectionBoth;
selectionState   2629 Source/core/rendering/RenderBlockFlow.cpp         if (!containsStart && !lastSelectedLine && selectionState() != SelectionStart && selectionState() != SelectionBoth) {
selectionState   2649 Source/core/rendering/RenderBlockFlow.cpp     if (lastSelectedLine && selectionState() != SelectionEnd && selectionState() != SelectionBoth) {
selectionState    260 Source/core/rendering/RenderBlockLineLayout.cpp         if (!rootHasSelectedChildren && box->renderer().selectionState() != RenderObject::SelectionNone)
selectionState     73 Source/core/rendering/RenderBoxModelObject.cpp     if (state == SelectionInside && selectionState() != SelectionNone)
selectionState     76 Source/core/rendering/RenderBoxModelObject.cpp     if ((state == SelectionStart && selectionState() == SelectionEnd)
selectionState     77 Source/core/rendering/RenderBoxModelObject.cpp         || (state == SelectionEnd && selectionState() == SelectionStart))
selectionState   1152 Source/core/rendering/RenderListMarker.cpp         if (selectionState() != SelectionNone) {
selectionState   1160 Source/core/rendering/RenderListMarker.cpp     if (selectionState() != SelectionNone) {
selectionState   1836 Source/core/rendering/RenderListMarker.cpp     if (selectionState() == SelectionNone || !inlineBoxWrapper())
selectionState   2570 Source/core/rendering/RenderObject.cpp     SelectionState st = selectionState();
selectionState    884 Source/core/rendering/RenderObject.h     SelectionState selectionState() const { return m_bitfields.selectionState(); }
selectionState    895 Source/core/rendering/RenderObject.h     bool hasSelectedChildren() const { return selectionState() != SelectionNone; }
selectionState   1218 Source/core/rendering/RenderObject.h         ALWAYS_INLINE SelectionState selectionState() const { return static_cast<SelectionState>(m_selectionState); }
selectionState   1219 Source/core/rendering/RenderObject.h         ALWAYS_INLINE void setSelectionState(SelectionState selectionState) { m_selectionState = selectionState; }
selectionState   1373 Source/core/rendering/RenderObject.h     if (selectionState() == state)
selectionState    140 Source/core/rendering/RenderReplaced.cpp     bool drawSelectionTint = selectionState() != SelectionNone && !document().printing();
selectionState    142 Source/core/rendering/RenderReplaced.cpp         if (selectionState() == SelectionNone)
selectionState    601 Source/core/rendering/RenderReplaced.cpp     SelectionState s = selectionState();
selectionState     46 Source/core/rendering/RenderSelectionInfo.h         , m_state(o->selectionState())
selectionState   1205 Source/core/rendering/RenderText.cpp             if (selectionState() == SelectionStart) {
selectionState   1211 Source/core/rendering/RenderText.cpp             } else if (selectionState() == SelectionEnd)
selectionState   1608 Source/core/rendering/RenderText.cpp     if (selectionState() == SelectionNone)
selectionState   1617 Source/core/rendering/RenderText.cpp     if (selectionState() == SelectionInside) {
selectionState   1623 Source/core/rendering/RenderText.cpp         if (selectionState() == SelectionStart)
selectionState   1625 Source/core/rendering/RenderText.cpp         else if (selectionState() == SelectionEnd)
selectionState    521 Source/core/rendering/RenderView.cpp         if ((os->canBeSelectionLeaf() || os == m_selectionStart || os == m_selectionEnd) && os->selectionState() != SelectionNone) {
selectionState    561 Source/core/rendering/RenderView.cpp         if (o->selectionState() == SelectionNone)
selectionState    635 Source/core/rendering/RenderView.cpp         if ((os->canBeSelectionLeaf() || os == m_selectionStart || os == m_selectionEnd) && os->selectionState() != SelectionNone) {
selectionState    692 Source/core/rendering/RenderView.cpp         if ((o->canBeSelectionLeaf() || o == start || o == end) && o->selectionState() != SelectionNone) {
selectionState    307 Source/core/rendering/RootInlineBox.cpp     RenderObject::SelectionState lineState = selectionState();
selectionState    335 Source/core/rendering/RootInlineBox.cpp         bool isPreviousBoxSelected = firstBox->selectionState() != RenderObject::SelectionNone;
selectionState    337 Source/core/rendering/RootInlineBox.cpp             if (box->selectionState() != RenderObject::SelectionNone) {
selectionState    351 Source/core/rendering/RootInlineBox.cpp             isPreviousBoxSelected = box->selectionState() != RenderObject::SelectionNone;
selectionState    363 Source/core/rendering/RootInlineBox.cpp         RenderObject::SelectionState boxState = box->selectionState();
selectionState    385 Source/core/rendering/RootInlineBox.cpp         if (box->selectionState() != RenderObject::SelectionNone)
selectionState    395 Source/core/rendering/RootInlineBox.cpp         if (box->selectionState() != RenderObject::SelectionNone)
selectionState    432 Source/core/rendering/RootInlineBox.cpp     RenderObject::SelectionState blockSelectionState = root().block().selectionState();
selectionState    439 Source/core/rendering/RootInlineBox.cpp             RenderObject::SelectionState lastLineSelectionState = lastLine->selectionState();
selectionState    122 Source/core/rendering/RootInlineBox.h     virtual RenderObject::SelectionState selectionState() OVERRIDE FINAL;
selectionState    202 Source/core/rendering/svg/SVGInlineTextBox.cpp     bool hasSelection = selectionState() != RenderObject::SelectionNone;
selectionState    262 Source/core/rendering/svg/SVGInlineTextBox.cpp     bool hasSelection = !parentRenderer.document().printing() && selectionState() != RenderObject::SelectionNone;
selectionState     42 Source/core/rendering/svg/SVGRootInlineBox.cpp     bool hasSelection = !isPrinting && selectionState() != RenderObject::SelectionNone;