Searched refs:selectionState (Results 1 - 25 of 25) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DEllipsisBox.h52 virtual RenderObject::SelectionState selectionState() const OVERRIDE { return m_selectionState; }
H A DRenderSelectionInfo.h46 , m_state(o->selectionState())
H A DRootInlineBox.cpp298 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 function in class:blink::RootInlineBox
354 RenderObject::SelectionState boxState = box->selectionState();
376 if (box->selectionState() != RenderObject::SelectionNone)
386 if (box->selectionState() != RenderObject::SelectionNone)
423 RenderObject::SelectionState blockSelectionState = root().block().selectionState();
431 RenderObject::SelectionState lastLineSelectionState = lastLine->selectionState();
[all...]
H A DInlineBox.cpp279 RenderObject::SelectionState InlineBox::selectionState() const function in class:blink::InlineBox
281 return renderer().selectionState();
H A DRenderObject.h912 SelectionState selectionState() const { return m_bitfields.selectionState(); } function in class:blink::RenderObject
922 bool hasSelectedChildren() const { return selectionState() != SelectionNone; }
1306 ALWAYS_INLINE SelectionState selectionState() const { return static_cast<SelectionState>(m_selectionState); } function in class:blink::RenderObject::RenderObjectBitfields
1307 ALWAYS_INLINE void setSelectionState(SelectionState selectionState) { m_selectionState = selectionState; } argument
1472 if (selectionState() == state)
H A DRenderBoxModelObject.cpp70 if (state == SelectionInside && selectionState() != SelectionNone)
73 if ((state == SelectionStart && selectionState() == SelectionEnd)
74 || (state == SelectionEnd && selectionState() == SelectionStart))
H A DRenderReplaced.cpp138 bool drawSelectionTint = selectionState() != SelectionNone && !document().printing();
140 if (selectionState() == SelectionNone)
545 SelectionState s = selectionState();
H A DInlineTextBox.cpp155 // See the corresponding code in InlineTextBox::selectionState.
160 RenderObject::SelectionState InlineTextBox::selectionState() const function in class:blink::InlineTextBox
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)
H A DEllipsisBox.cpp53 bool haveSelection = !isPrinting && paintInfo.phase != PaintPhaseTextClip && selectionState() != RenderObject::SelectionNone;
H A DInlineTextBox.h127 virtual RenderObject::SelectionState selectionState() const OVERRIDE FINAL;
H A DRenderView.cpp449 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) {
H A DRootInlineBox.h121 virtual RenderObject::SelectionState selectionState() const OVERRIDE FINAL;
H A DRenderText.cpp1197 if (selectionState() == SelectionStart) {
1203 } else if (selectionState() == SelectionEnd)
1594 if (selectionState() == SelectionNone)
1603 if (selectionState() == SelectionInside) {
1609 if (selectionState() == SelectionStart)
1611 else if (selectionState() == SelectionEnd)
H A DInlineBox.h265 virtual RenderObject::SelectionState selectionState() const;
H A DInlineFlowBox.h204 virtual RenderObject::SelectionState selectionState() const OVERRIDE;
H A DRenderBlockFlow.cpp2740 bool containsStart = selectionState() == SelectionStart || selectionState() == SelectionBoth;
2762 if (!containsStart && !lastSelectedLine && selectionState() != SelectionStart && selectionState() != SelectionBoth) {
2782 if (lastSelectedLine && selectionState() != SelectionEnd && selectionState() != SelectionBoth) {
H A DRenderBlock.cpp1812 return selectionState() != SelectionNone && style()->visibility() == VISIBLE && isSelectionRoot();
1933 if (rootBlock == this && (selectionState() != SelectionBoth && selectionState() != SelectionEnd))
1946 for (curr = firstChildBox(); curr && curr->selectionState() == SelectionNone; curr = curr->nextSiblingBox()) { }
1949 SelectionState childState = curr->selectionState();
H A DRenderListMarker.cpp1627 if (selectionState() == SelectionNone || !inlineBoxWrapper())
H A DInlineFlowBox.cpp1150 RenderObject::SelectionState InlineFlowBox::selectionState() const function in class:blink::InlineFlowBox
H A DRenderBlockLineLayout.cpp209 if (!rootHasSelectedChildren && box->renderer().selectionState() != RenderObject::SelectionNone)
H A DRenderObject.cpp2329 SelectionState st = selectionState();
/external/chromium_org/third_party/WebKit/Source/core/paint/
H A DListMarkerPainter.cpp46 if (m_renderListMarker.selectionState() != RenderObject::SelectionNone) {
54 if (m_renderListMarker.selectionState() != RenderObject::SelectionNone) {
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DTouchAdjustment.cpp134 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/
H A DSVGRootInlineBox.cpp40 bool hasSelection = !isPrinting && selectionState() != RenderObject::SelectionNone;
H A DSVGInlineTextBox.cpp200 bool hasSelection = selectionState() != RenderObject::SelectionNone;
255 bool hasSelection = !parentRenderer.document().printing() && selectionState() != RenderObject::SelectionNone;

Completed in 2685 milliseconds