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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGRenderSupport.h 70 static LayoutRect clippedOverflowRectForRepaint(const RenderObject*, const RenderLayerModelObject* repaintContainer);
71 static void computeFloatRectForRepaint(const RenderObject*, const RenderLayerModelObject* repaintContainer, FloatRect&, bool fixed);
72 static void mapLocalToContainer(const RenderObject*, const RenderLayerModelObject* repaintContainer, TransformState&, bool* wasFixed = 0);
RenderSVGBlock.cpp 89 void RenderSVGBlock::mapLocalToContainer(const RenderLayerModelObject* repaintContainer, TransformState& transformState, MapCoordinatesFlags, bool* wasFixed) const
91 SVGRenderSupport::mapLocalToContainer(this, repaintContainer, transformState, wasFixed);
RenderSVGInline.cpp 98 void RenderSVGInline::mapLocalToContainer(const RenderLayerModelObject* repaintContainer, TransformState& transformState, MapCoordinatesFlags, bool* wasFixed) const
100 SVGRenderSupport::mapLocalToContainer(this, repaintContainer, transformState, wasFixed);
RenderSVGModelObject.cpp 63 void RenderSVGModelObject::mapLocalToContainer(const RenderLayerModelObject* repaintContainer, TransformState& transformState, MapCoordinatesFlags, bool* wasFixed) const
65 SVGRenderSupport::mapLocalToContainer(this, repaintContainer, transformState, wasFixed);
RenderSVGBlock.h 38 virtual void mapLocalToContainer(const RenderLayerModelObject* repaintContainer, TransformState&, MapCoordinatesFlags = ApplyContainerFlip, bool* wasFixed = 0) const OVERRIDE FINAL;
RenderSVGInline.h 50 virtual void mapLocalToContainer(const RenderLayerModelObject* repaintContainer, TransformState&, MapCoordinatesFlags = ApplyContainerFlip, bool* wasFixed = 0) const OVERRIDE FINAL;
RenderSVGModelObject.h 60 virtual void mapLocalToContainer(const RenderLayerModelObject* repaintContainer, TransformState&, MapCoordinatesFlags = ApplyContainerFlip, bool* wasFixed = 0) const OVERRIDE FINAL;
SVGRenderSupport.cpp 46 LayoutRect SVGRenderSupport::clippedOverflowRectForRepaint(const RenderObject* object, const RenderLayerModelObject* repaintContainer)
55 object->computeFloatRectForPaintInvalidation(repaintContainer, repaintRect);
59 void SVGRenderSupport::computeFloatRectForRepaint(const RenderObject* object, const RenderLayerModelObject* repaintContainer, FloatRect& repaintRect, bool fixed)
65 object->parent()->computeFloatRectForPaintInvalidation(repaintContainer, repaintRect, fixed);
68 void SVGRenderSupport::mapLocalToContainer(const RenderObject* object, const RenderLayerModelObject* repaintContainer, TransformState& transformState, bool* wasFixed)
81 parent->mapLocalToContainer(repaintContainer, transformState, mode, wasFixed);
RenderSVGRoot.h 105 virtual void mapLocalToContainer(const RenderLayerModelObject* repaintContainer, TransformState&, MapCoordinatesFlags = ApplyContainerFlip, bool* wasFixed = 0) const OVERRIDE;
RenderSVGRoot.cpp 409 void RenderSVGRoot::mapLocalToContainer(const RenderLayerModelObject* repaintContainer, TransformState& transformState, MapCoordinatesFlags mode, bool* wasFixed) const
416 RenderReplaced::mapLocalToContainer(repaintContainer, transformState, mode | ApplyContainerFlip, wasFixed);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayerRepainter.cpp 76 const RenderLayerModelObject* repaintContainer = m_renderer.containerForPaintInvalidation();
85 m_renderer.invalidatePaintUsingContainer(repaintContainer, pixelSnappedIntRect(oldRepaintRect), InvalidationLayer);
87 m_renderer.invalidatePaintUsingContainer(repaintContainer, pixelSnappedIntRect(m_repaintRect), InvalidationLayer);
89 m_renderer.invalidatePaintAfterLayoutIfNeeded(repaintContainer, m_renderer.selfNeedsLayout(), oldRepaintRect, oldOffset, &m_repaintRect, &m_offset);
110 const RenderLayerModelObject* repaintContainer = m_renderer.containerForPaintInvalidation();
111 LayoutRect repaintRect = m_renderer.boundsRectForPaintInvalidation(repaintContainer);
119 m_offset = RenderLayer::positionFromPaintInvalidationContainer(&m_renderer, repaintContainer);
149 // Since we're only painting non-composited layers, we know that they all share the same repaintContainer.
155 void RenderLayerRepainter::repaintIncludingNonCompositingDescendantsInternal(const RenderLayerModelObject* repaintContainer)
157 m_renderer.invalidatePaintUsingContainer(repaintContainer, pixelSnappedIntRect(m_renderer.boundsRectForPaintInvalidation(repaintContainer)), InvalidationLay (…)
    [all...]
RenderLayerRepainter.h 86 void repaintIncludingNonCompositingDescendantsInternal(const RenderLayerModelObject* repaintContainer);
RenderSelectionInfo.h 51 const RenderLayerModelObject* repaintContainer() const { return m_repaintContainer; }
105 // repaintContainer as the render object. Find out why it does that and fix.
RenderView.h 133 bool canMapUsingLayoutStateForContainer(const RenderObject* repaintContainer) const
136 return layoutStateCachedOffsetsEnabled() && (repaintContainer == this);
188 virtual void mapLocalToContainer(const RenderLayerModelObject* repaintContainer, TransformState&, MapCoordinatesFlags = ApplyContainerFlip, bool* wasFixed = 0) const OVERRIDE;
RenderFrameSet.cpp 444 const RenderLayerModelObject* repaintContainer = 0;
446 repaintContainer = containerForPaintInvalidation();
447 oldBounds = boundsRectForPaintInvalidation(repaintContainer);
476 invalidatePaintUsingContainer(repaintContainer, pixelSnappedIntRect(oldBounds), InvalidationSelfLayout);
477 LayoutRect newBounds = boundsRectForPaintInvalidation(repaintContainer);
479 invalidatePaintUsingContainer(repaintContainer, pixelSnappedIntRect(newBounds), InvalidationSelfLayout);
RenderView.cpp 269 void RenderView::mapLocalToContainer(const RenderLayerModelObject* repaintContainer, TransformState& transformState, MapCoordinatesFlags mode, bool* wasFixed) const
273 if (!repaintContainer && mode & UseTransforms && shouldUseTransformFromContainer(0)) {
282 if (repaintContainer == this)
290 parentDocRenderer->mapLocalToContainer(repaintContainer, transformState, mode, wasFixed);
297 ASSERT_ARG(repaintContainer, !repaintContainer);
587 // RenderSelectionInfo::rect() is in the coordinates of the repaintContainer, so map to page coordinates.
589 if (const RenderLayerModelObject* repaintContainer = info->repaintContainer()) {
590 FloatQuad absQuad = repaintContainer->localToAbsoluteQuad(FloatRect(currRect))
    [all...]
RenderLayer.cpp 660 static RenderLayerModelObject* getTransformedAncestor(const RenderLayerModelObject* repaintContainer)
662 ASSERT(repaintContainer->layer()->enclosingTransformedAncestor());
663 ASSERT(repaintContainer->layer()->enclosingTransformedAncestor()->renderer());
667 if (RenderLayer* ancestor = repaintContainer->layer()->enclosingTransformedAncestor())
672 LayoutPoint RenderLayer::positionFromPaintInvalidationContainer(const RenderObject* renderObject, const RenderLayerModelObject* repaintContainer)
674 if (!repaintContainer || !repaintContainer->groupedMapping())
675 return renderObject->positionFromPaintInvalidationContainer(repaintContainer);
677 RenderLayerModelObject* transformedAncestor = getTransformedAncestor(repaintContainer);
679 return renderObject->positionFromPaintInvalidationContainer(repaintContainer);
    [all...]
RenderLayer.h 339 // Computes the position of the given render object in the space of |repaintContainer|.
342 static LayoutPoint positionFromPaintInvalidationContainer(const RenderObject*, const RenderLayerModelObject* repaintContainer);
344 // Adjusts the given rect (in the coordinate space of the RenderObject) to the coordinate space of |repaintContainer|'s GraphicsLayer backing.
345 static void mapRectToRepaintBacking(const RenderObject*, const RenderLayerModelObject* repaintContainer, LayoutRect&);
347 // Computes the bounding repaint rect for |renderObject|, in the coordinate space of |repaintContainer|'s GraphicsLayer backing.
348 static LayoutRect computeRepaintRect(const RenderObject*, const RenderLayer* repaintContainer);
    [all...]
RenderInline.h 152 virtual void mapLocalToContainer(const RenderLayerModelObject* repaintContainer, TransformState&, MapCoordinatesFlags = ApplyContainerFlip, bool* wasFixed = 0) const OVERRIDE;
RenderInline.cpp     [all...]
RenderLayerScrollableArea.cpp 375 const RenderLayerModelObject* repaintContainer = box().containerForPaintInvalidation();
385 quadForFakeMouseMoveEvent = repaintContainer->localToAbsoluteQuad(quadForFakeMouseMoveEvent);
409 box().invalidatePaintUsingContainer(repaintContainer, pixelSnappedIntRect(layer()->renderer()->previousPaintInvalidationRect()), InvalidationScroll);
411 box().invalidatePaintUsingContainer(repaintContainer, pixelSnappedIntRect(layer()->repainter().repaintRect()), InvalidationScroll);
    [all...]
RenderBlock.h 167 GapRects selectionGapRectsForRepaint(const RenderLayerModelObject* repaintContainer);
RenderBox.cpp     [all...]
RenderBox.h     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/
FrameView.cpp     [all...]

Completed in 507 milliseconds

1 2