HomeSort by relevance Sort by last modified time
    Searched refs:repaintContainer (Results 26 - 38 of 38) sorted by null

12

  /external/webkit/Source/WebCore/rendering/
RenderView.cpp 146 void RenderView::mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool fixed, bool useTransforms, TransformState& transformState) const
150 ASSERT_UNUSED(repaintContainer, !repaintContainer || repaintContainer == this);
305 void RenderView::computeRectForRepaint(RenderBoxModelObject* repaintContainer, IntRect& rect, bool fixed)
309 ASSERT_UNUSED(repaintContainer, !repaintContainer || repaintContainer == this);
381 // RenderSelectionInfo::rect() is in the coordinates of the repaintContainer, so map to page coordinates.
383 if (RenderBoxModelObject* repaintContainer = info->repaintContainer())
    [all...]
RenderObject.h 476 // If repaintContainer and repaintContainerSkipped are not null, on return *repaintContainerSkipped
477 // is true if the renderer returned is an ancestor of repaintContainer.
478 RenderObject* container(RenderBoxModelObject* repaintContainer = 0, bool* repaintContainerSkipped = 0) const;
572 FloatQuad localToContainerQuad(const FloatQuad&, RenderBoxModelObject* repaintContainer, bool fixed = false) const;
615 // of repaintContainer. If repaintContainer is 0, repaint via the view.
616 void repaintUsingContainer(RenderBoxModelObject* repaintContainer, const IntRect& r, bool immediate = false);
626 bool repaintAfterLayoutIfNeeded(RenderBoxModelObject* repaintContainer, const IntRect& oldBounds, const IntRect& oldOutlineBox, const IntRect* newBoundsPtr = 0, const IntRect* newOutlineBoxPtr = 0);
642 virtual IntRect clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContainer);
643 virtual IntRect rectWithOutlineForRepaint(RenderBoxModelObject* repaintContainer, int outlineWidth)
    [all...]
RenderView.h 66 virtual void computeRectForRepaint(RenderBoxModelObject* repaintContainer, IntRect&, bool fixed = false);
183 virtual void mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool useTransforms, bool fixed, TransformState&) const;
RenderLayer.cpp 344 RenderBoxModelObject* repaintContainer = renderer()->containerForRepaint();
345 IntRect newRect = renderer()->clippedOverflowRectForRepaint(repaintContainer);
346 IntRect newOutlineBox = renderer()->outlineBoundsForRepaint(repaintContainer, cachedOffset);
352 renderer()->repaintUsingContainer(repaintContainer, m_repaintRect);
354 renderer()->repaintUsingContainer(repaintContainer, newRect);
356 renderer()->repaintAfterLayoutIfNeeded(repaintContainer, m_repaintRect, m_outlineBox, &newRect, &newOutlineBox);
408 RenderBoxModelObject* repaintContainer = renderer()->containerForRepaint();
409 m_repaintRect = renderer()->clippedOverflowRectForRepaint(repaintContainer);
410 m_outlineBox = renderer()->outlineBoundsForRepaint(repaintContainer);
541 RenderBoxModelObject* repaintContainer = renderer()->containerForRepaint()
    [all...]
RenderTableCell.cpp 247 IntRect RenderTableCell::clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContainer)
254 return RenderBlock::clippedOverflowRectForRepaint(repaintContainer);
295 computeRectForRepaint(repaintContainer, r);
299 void RenderTableCell::computeRectForRepaint(RenderBoxModelObject* repaintContainer, IntRect& r, bool fixed)
301 if (repaintContainer == this)
305 if ((!v || !v->layoutStateEnabled() || repaintContainer) && parent())
307 RenderBlock::computeRectForRepaint(repaintContainer, r, fixed);
    [all...]
RenderBox.h 124 virtual IntRect outlineBoundsForRepaint(RenderBoxModelObject* /*repaintContainer*/, IntPoint* cachedOffsetToRepaintContainer) const;
276 virtual IntRect clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContainer);
277 virtual void computeRectForRepaint(RenderBoxModelObject* repaintContainer, IntRect&, bool fixed = false);
428 virtual void mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool fixed, bool useTransforms, TransformState&) const;
RenderText.cpp     [all...]
RenderBox.cpp 504 IntRect RenderBox::outlineBoundsForRepaint(RenderBoxModelObject* repaintContainer, IntPoint* cachedOffsetToRepaintContainer) const
513 containerRelativeQuad = localToContainerQuad(containerRelativeQuad, repaintContainer);
    [all...]
RenderBlock.h 123 GapRects selectionGapRectsForRepaint(RenderBoxModelObject* repaintContainer);
565 virtual IntRect rectWithOutlineForRepaint(RenderBoxModelObject* repaintContainer, int outlineWidth);
572 virtual IntRect selectionRectForRepaint(RenderBoxModelObject* repaintContainer, bool /*clipToVisibleContent*/)
574 return selectionGapRectsForRepaint(repaintContainer);
    [all...]
RenderLayerCompositor.cpp 453 RenderBoxModelObject* repaintContainer = layer->renderer()->containerForRepaint();
454 if (!repaintContainer)
455 repaintContainer = m_renderView;
457 layer->repaintIncludingNonCompositingDescendants(repaintContainer);
458 if (repaintContainer == m_renderView) {
    [all...]
RenderListMarker.cpp     [all...]
RenderLayer.h 185 void repaintIncludingNonCompositingDescendants(RenderBoxModelObject* repaintContainer);
    [all...]
RenderBlock.cpp     [all...]

Completed in 861 milliseconds

12