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

12

/external/webkit/Source/WebCore/rendering/svg/
H A DRenderSVGModelObject.cpp46 IntRect RenderSVGModelObject::clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContainer) argument
48 return SVGRenderSupport::clippedOverflowRectForRepaint(this, repaintContainer);
51 void RenderSVGModelObject::computeRectForRepaint(RenderBoxModelObject* repaintContainer, IntRect& repaintRect, bool fixed) argument
53 SVGRenderSupport::computeRectForRepaint(this, repaintContainer, repaintRect, fixed);
56 void RenderSVGModelObject::mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool fixed , bool useTransforms, TransformState& transformState) const argument
58 SVGRenderSupport::mapLocalToContainer(this, repaintContainer, fixed, useTransforms, transformState);
64 IntRect RenderSVGModelObject::outlineBoundsForRepaint(RenderBoxModelObject* repaintContainer, IntPoint*) const argument
69 FloatQuad containerRelativeQuad = localToContainerQuad(FloatRect(box), repaintContainer);
H A DRenderSVGModelObject.h54 virtual IntRect clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContainer);
55 virtual void computeRectForRepaint(RenderBoxModelObject* repaintContainer, IntRect&, bool fixed = false);
56 virtual IntRect outlineBoundsForRepaint(RenderBoxModelObject* repaintContainer, IntPoint*) const;
63 virtual void mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool useTransforms, bool fixed, TransformState&) const;
H A DRenderSVGInline.h48 virtual IntRect clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContainer);
49 virtual void computeRectForRepaint(RenderBoxModelObject* repaintContainer, IntRect&, bool fixed = false);
50 virtual void mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool useTransforms, bool fixed, TransformState&) const;
H A DRenderSVGInline.cpp70 IntRect RenderSVGInline::clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContainer) argument
72 return SVGRenderSupport::clippedOverflowRectForRepaint(this, repaintContainer);
75 void RenderSVGInline::computeRectForRepaint(RenderBoxModelObject* repaintContainer, IntRect& repaintRect, bool fixed) argument
77 SVGRenderSupport::computeRectForRepaint(this, repaintContainer, repaintRect, fixed);
80 void RenderSVGInline::mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool useTransforms, bool fixed, TransformState& transformState) const argument
82 SVGRenderSupport::mapLocalToContainer(this, repaintContainer, useTransforms, fixed, transformState);
H A DRenderSVGForeignObject.cpp71 IntRect RenderSVGForeignObject::clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContainer) argument
73 return SVGRenderSupport::clippedOverflowRectForRepaint(this, repaintContainer);
76 void RenderSVGForeignObject::computeRectForRepaint(RenderBoxModelObject* repaintContainer, IntRect& repaintRect, bool fixed) argument
78 SVGRenderSupport::computeRectForRepaint(this, repaintContainer, repaintRect, fixed);
163 void RenderSVGForeignObject::mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool fixed, bool useTransforms, TransformState& transformState) const argument
168 SVGRenderSupport::mapLocalToContainer(this, repaintContainer, fixed, useTransforms, transformState);
H A DRenderSVGForeignObject.h42 virtual IntRect clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContainer);
43 virtual void computeRectForRepaint(RenderBoxModelObject* repaintContainer, IntRect&, bool fixed = false);
56 virtual void mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool fixed , bool useTransforms, TransformState&) const;
H A DSVGRenderSupport.h64 static IntRect clippedOverflowRectForRepaint(RenderObject*, RenderBoxModelObject* repaintContainer);
65 static void computeRectForRepaint(RenderObject*, RenderBoxModelObject* repaintContainer, IntRect&, bool fixed);
66 static void mapLocalToContainer(const RenderObject*, RenderBoxModelObject* repaintContainer, bool useTransforms, bool fixed, TransformState&);
H A DRenderSVGText.h65 virtual IntRect clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContainer);
66 virtual void computeRectForRepaint(RenderBoxModelObject* repaintContainer, IntRect&, bool fixed = false);
68 virtual void mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool useTransforms, bool fixed, TransformState&) const;
H A DRenderSVGRoot.h78 virtual IntRect clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContainer);
79 virtual void computeRectForRepaint(RenderBoxModelObject* repaintContainer, IntRect& repaintRect, bool fixed);
81 virtual void mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool useTransforms, bool fixed, TransformState&) const;
H A DRenderSVGText.cpp85 IntRect RenderSVGText::clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContainer) argument
87 return SVGRenderSupport::clippedOverflowRectForRepaint(this, repaintContainer);
90 void RenderSVGText::computeRectForRepaint(RenderBoxModelObject* repaintContainer, IntRect& repaintRect, bool fixed) argument
92 SVGRenderSupport::computeRectForRepaint(this, repaintContainer, repaintRect, fixed);
95 void RenderSVGText::mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool fixed, bool useTransforms, TransformState& transformState) const argument
97 SVGRenderSupport::mapLocalToContainer(this, repaintContainer, fixed, useTransforms, transformState);
H A DRenderSVGRoot.cpp276 IntRect RenderSVGRoot::clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContainer) argument
278 return SVGRenderSupport::clippedOverflowRectForRepaint(this, repaintContainer);
281 void RenderSVGRoot::computeRectForRepaint(RenderBoxModelObject* repaintContainer, IntRect& repaintRect, bool fixed) argument
294 RenderBox::computeRectForRepaint(repaintContainer, repaintRect, fixed);
297 void RenderSVGRoot::mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool fixed , bool useTransforms, TransformState& transformState) const argument
304 RenderBox::mapLocalToContainer(repaintContainer, fixed, useTransforms, transformState);
H A DSVGRenderSupport.cpp48 IntRect SVGRenderSupport::clippedOverflowRectForRepaint(RenderObject* object, RenderBoxModelObject* repaintContainer) argument
57 object->computeRectForRepaint(repaintContainer, repaintRect);
61 void SVGRenderSupport::computeRectForRepaint(RenderObject* object, RenderBoxModelObject* repaintContainer, IntRect& repaintRect, bool fixed) argument
69 object->parent()->computeRectForRepaint(repaintContainer, repaintRect, fixed);
72 void SVGRenderSupport::mapLocalToContainer(const RenderObject* object, RenderBoxModelObject* repaintContainer, bool fixed , bool useTransforms, TransformState& transformState) argument
77 object->parent()->mapLocalToContainer(repaintContainer, fixed, useTransforms, transformState);
/external/webkit/Source/WebCore/rendering/
H A DRenderReplaced.h72 virtual IntRect clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContainer);
79 virtual IntRect selectionRectForRepaint(RenderBoxModelObject* repaintContainer, bool clipToVisibleContent = true);
H A DRenderTableCol.cpp72 IntRect RenderTableCol::clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContainer) argument
77 // FIXME: check for repaintContainer each time here?
82 return parentTable->clippedOverflowRectForRepaint(repaintContainer);
H A DRenderObject.cpp1152 void RenderObject::repaintUsingContainer(RenderBoxModelObject* repaintContainer, const IntRect& r, bool immediate) argument
1154 if (!repaintContainer) {
1161 if (repaintContainer->isRenderView()) {
1162 ASSERT(repaintContainer == v);
1170 ASSERT(repaintContainer->hasLayer() && repaintContainer->layer()->isComposited());
1171 repaintContainer->layer()->setBackingNeedsRepaintInRect(r);
1174 if (repaintContainer->isRenderView())
1175 toRenderView(repaintContainer)->repaintViewRectangle(r, immediate);
1189 RenderBoxModelObject* repaintContainer
1209 RenderBoxModelObject* repaintContainer = containerForRepaint(); local
1214 repaintAfterLayoutIfNeeded(RenderBoxModelObject* repaintContainer, const IntRect& oldBounds, const IntRect& oldOutlineBox, const IntRect* newBoundsPtr, const IntRect* newOutlineBoxRectPtr) argument
1338 rectWithOutlineForRepaint(RenderBoxModelObject* repaintContainer, int outlineWidth) argument
1351 computeRectForRepaint(RenderBoxModelObject* repaintContainer, IntRect& rect, bool fixed) argument
1864 mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool fixed, bool useTransforms, TransformState& transformState) const argument
1936 localToContainerQuad(const FloatQuad& localQuad, RenderBoxModelObject* repaintContainer, bool fixed) const argument
2014 container(RenderBoxModelObject* repaintContainer, bool* repaintContainerSkipped) const argument
[all...]
H A DRenderInline.h129 virtual IntRect clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContainer);
130 virtual IntRect rectWithOutlineForRepaint(RenderBoxModelObject* repaintContainer, int outlineWidth);
131 virtual void computeRectForRepaint(RenderBoxModelObject* repaintContainer, IntRect& rect, bool fixed);
133 virtual void mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool fixed, bool useTransforms, TransformState&) const;
H A DRenderListMarker.h68 virtual IntRect selectionRectForRepaint(RenderBoxModelObject* repaintContainer, bool clipToVisibleContent = true);
H A DRenderSelectionInfo.h51 RenderBoxModelObject* repaintContainer() const { return m_repaintContainer; } function in class:WebCore::RenderSelectionInfoBase
H A DRenderTableCol.h59 virtual IntRect clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContainer);
H A DRenderTableRow.cpp172 IntRect RenderTableRow::clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContainer) argument
176 if (repaintContainer == this)
177 return RenderBox::clippedOverflowRectForRepaint(repaintContainer);
182 // FIXME: do repaintContainer checks here
184 return parentTable->clippedOverflowRectForRepaint(repaintContainer);
H A DRenderTableRow.h56 virtual IntRect clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContainer);
H A DRenderReplaced.cpp313 IntRect RenderReplaced::selectionRectForRepaint(RenderBoxModelObject* repaintContainer, bool clipToVisibleContent) argument
322 computeRectForRepaint(repaintContainer, rect);
324 rect = localToContainerQuad(FloatRect(rect), repaintContainer).enclosingBoundingBox();
389 IntRect RenderReplaced::clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContainer) argument
412 computeRectForRepaint(repaintContainer, r);
H A DRenderTableCell.h149 virtual IntRect clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContainer);
150 virtual void computeRectForRepaint(RenderBoxModelObject* repaintContainer, IntRect&, bool fixed = false);
H A DRenderInline.cpp959 IntRect RenderInline::clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContainer) argument
1002 if (repaintContainer != this)
1003 cb->computeRectForRepaint(repaintContainer, r);
1008 IntRect childRect = curr->rectWithOutlineForRepaint(repaintContainer, ow);
1014 IntRect contRect = continuation()->rectWithOutlineForRepaint(repaintContainer, ow);
1022 IntRect RenderInline::rectWithOutlineForRepaint(RenderBoxModelObject* repaintContainer, int outlineWidth) argument
1024 IntRect r(RenderBoxModelObject::rectWithOutlineForRepaint(repaintContainer, outlineWidth));
1027 r.unite(curr->rectWithOutlineForRepaint(repaintContainer, outlineWidth));
1032 void RenderInline::computeRectForRepaint(RenderBoxModelObject* repaintContainer, IntRect& rect, bool fixed) argument
1036 if (v->layoutStateEnabled() && !repaintContainer) {
1119 mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool fixed, bool useTransforms, TransformState& transformState) const argument
[all...]
H A DRenderView.cpp146 void RenderView::mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool fixed, bool useTransforms, TransformState& transformState) const argument
150 ASSERT_UNUSED(repaintContainer, !repaintContainer || repaintContainer == this);
305 void RenderView::computeRectForRepaint(RenderBoxModelObject* repaintContainer, IntRect& rect, bool fixed) argument
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
[all...]

Completed in 219 milliseconds

12