Searched defs:selectionState (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DInlineBox.cpp279 RenderObject::SelectionState InlineBox::selectionState() const function in class:blink::InlineBox
281 return renderer().selectionState();
H A DInlineFlowBox.cpp1150 RenderObject::SelectionState InlineFlowBox::selectionState() const function in class:blink::InlineFlowBox
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 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 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)

Completed in 148 milliseconds