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

  /external/webkit/Source/WebCore/rendering/
EllipsisBox.h 44 void setSelectionState(RenderObject::SelectionState s) { m_selectionState = s; }
49 virtual RenderObject::SelectionState selectionState() { return m_selectionState; }
55 RenderObject::SelectionState m_selectionState;
RenderSelectionInfo.h 46 , m_state(o->selectionState())
52 RenderObject::SelectionState state() const { return m_state; }
57 RenderObject::SelectionState m_state;
InlineBox.cpp 264 RenderObject::SelectionState InlineBox::selectionState()
266 return renderer()->selectionState();
RootInlineBox.cpp 310 RenderObject::SelectionState lineState = selectionState();
336 bool isPreviousBoxSelected = firstBox->selectionState() != RenderObject::SelectionNone;
338 if (box->selectionState() != RenderObject::SelectionNone) {
352 isPreviousBoxSelected = box->selectionState() != RenderObject::SelectionNone;
359 RenderObject::SelectionState RootInlineBox::selectionState()
362 RenderObject::SelectionState state = RenderObject::SelectionNone;
364 RenderObject::SelectionState boxState = box->selectionState();
    [all...]
RenderReplaced.cpp 130 bool drawSelectionTint = selectionState() != SelectionNone && !document()->printing();
132 if (selectionState() == SelectionNone)
345 void RenderReplaced::setSelectionState(SelectionState s)
357 SelectionState s = selectionState();
InlineTextBox.h 117 virtual RenderObject::SelectionState selectionState();
RootInlineBox.h 104 virtual RenderObject::SelectionState selectionState();
EllipsisBox.cpp 46 if (selectionState() != RenderObject::SelectionNone) {
InlineBox.h 289 virtual RenderObject::SelectionState selectionState();
InlineTextBox.cpp 119 RenderObject::SelectionState InlineTextBox::selectionState()
121 RenderObject::SelectionState state = renderer()->selectionState();
490 bool haveSelection = !isPrinting && paintInfo.phase != PaintPhaseTextClip && selectionState() != RenderObject::SelectionNone;
    [all...]
RenderText.cpp     [all...]
InlineFlowBox.h 182 virtual RenderObject::SelectionState selectionState();
RenderWidget.cpp 378 void RenderWidget::setSelectionState(SelectionState state)
380 if (selectionState() != state) {
RenderView.cpp 360 if ((os->canBeSelectionLeaf() || os == m_selectionStart || os == m_selectionEnd) && os->selectionState() != SelectionNone) {
440 if ((os->canBeSelectionLeaf() || os == m_selectionStart || os == m_selectionEnd) && os->selectionState() != SelectionNone) {
494 if ((o->canBeSelectionLeaf() || o == start || o == end) && o->selectionState() != SelectionNone) {
RenderListMarker.cpp     [all...]
RenderBoxModelObject.cpp 212 void RenderBoxModelObject::setSelectionState(SelectionState s)
214 if (selectionState() == s)
217 if (s == SelectionInside && selectionState() != SelectionNone)
220 if ((s == SelectionStart && selectionState() == SelectionEnd)
221 || (s == SelectionEnd && selectionState() == SelectionStart))
    [all...]
RenderBlock.cpp     [all...]
RenderObject.h 674 enum SelectionState {
683 // descendants (as described above in the SelectionState enum declaration).
684 SelectionState selectionState() const { return static_cast<SelectionState>(m_selectionState);; }
687 virtual void setSelectionState(SelectionState state) { m_selectionState = state; }
    [all...]
InlineFlowBox.cpp     [all...]
RenderBlockLineLayout.cpp 317 if (!rootHasSelectedChildren && box->renderer()->selectionState() != RenderObject::SelectionNone)
    [all...]
RenderObject.cpp     [all...]
  /external/webkit/Source/WebCore/rendering/svg/
SVGRootInlineBox.cpp 47 bool hasSelection = !isPrinting && selectionState() != RenderObject::SelectionNone;
SVGInlineTextBox.cpp 176 bool hasSelection = selectionState() != RenderObject::SelectionNone;
260 bool hasSelection = !parentRenderer->document()->printing() && selectionState() != RenderObject::SelectionNone;

Completed in 273 milliseconds