Home
last modified time | relevance | path

Searched refs:RenderBoxModelObject (Results 1 – 25 of 83) sorted by relevance

1234

/external/webkit/Source/WebCore/rendering/
DRenderInline.h34 class RenderInline : public RenderBoxModelObject {
71 virtual RenderBoxModelObject* virtualContinuation() const { return continuation(); } in virtualContinuation()
81 using RenderBoxModelObject::continuation;
82 using RenderBoxModelObject::setContinuation;
112 RenderObject* beforeChild, RenderBoxModelObject* oldCont);
114 RenderObject* newChild, RenderBoxModelObject* oldCont);
129 virtual IntRect clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContainer);
130 …virtual IntRect rectWithOutlineForRepaint(RenderBoxModelObject* repaintContainer, int outlineWidth…
131 …virtual void computeRectForRepaint(RenderBoxModelObject* repaintContainer, IntRect& rect, bool fix…
133 …virtual void mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool fixed, bool useTrans…
[all …]
DRenderBoxModelObject.h40 class RenderBoxModelObject : public RenderObject {
42 RenderBoxModelObject(Node*);
43 virtual ~RenderBoxModelObject();
127 void highQualityRepaintTimerFired(Timer<RenderBoxModelObject>*);
135 RenderBoxModelObject* continuation() const;
136 void setContinuation(RenderBoxModelObject*);
169 inline RenderBoxModelObject* toRenderBoxModelObject(RenderObject* object) in toRenderBoxModelObject()
172 return static_cast<RenderBoxModelObject*>(object); in toRenderBoxModelObject()
175 inline const RenderBoxModelObject* toRenderBoxModelObject(const RenderObject* object) in toRenderBoxModelObject()
178 return static_cast<const RenderBoxModelObject*>(object); in toRenderBoxModelObject()
[all …]
DRenderLineBoxList.h66 void paint(RenderBoxModelObject*, PaintInfo&, int x, int y) const;
67 …bool hitTest(RenderBoxModelObject*, const HitTestRequest&, HitTestResult&, int x, int y, int tx, i…
70 …bool anyLineIntersectsRect(RenderBoxModelObject*, const IntRect&, int tx, int ty, bool usePrintRec…
71 …bool lineIntersectsDirtyRect(RenderBoxModelObject*, InlineFlowBox*, const PaintInfo&, int tx, int …
72 …bool rangeIntersectsRect(RenderBoxModelObject*, int logicalTop, int logicalBottom, const IntRect&,…
DRenderBoxModelObject.cpp46 bool RenderBoxModelObject::s_wasFloating = false;
47 bool RenderBoxModelObject::s_hadLayer = false;
48 bool RenderBoxModelObject::s_layerWasSelfPainting = false;
54 typedef HashMap<RenderBoxModelObject*, LayerSizeMap> ObjectLayerSizeMap;
63 typedef HashMap<const RenderBoxModelObject*, RenderBoxModelObject*> ContinuationMap;
70 …bool shouldPaintAtLowQuality(GraphicsContext*, RenderBoxModelObject*, Image*, const void* layer, c…
71 void removeLayer(RenderBoxModelObject*, LayerSizeMap* innerMap, const void* layer);
72 void set(RenderBoxModelObject*, LayerSizeMap* innerMap, const void* layer, const IntSize&);
73 void objectDestroyed(RenderBoxModelObject*);
91 void ImageQualityController::removeLayer(RenderBoxModelObject* object, LayerSizeMap* innerMap, cons… in removeLayer()
[all …]
DRenderInline.cpp49 : RenderBoxModelObject(node) in RenderInline()
78 RenderBoxModelObject* continuation = this->continuation(); in destroy()
108 RenderBoxModelObject::destroy(); in destroy()
113 RenderBoxModelObject* continuation = this->continuation(); in inlineElementContinuation()
121 RenderBoxModelObject::updateBoxModelInfoFromStyle(); in updateBoxModelInfoFromStyle()
132 RenderBoxModelObject::styleDidChange(diff, oldStyle); in styleDidChange()
141 RenderBoxModelObject* nextCont = currCont->continuation(); in styleDidChange()
204 static RenderBoxModelObject* nextContinuation(RenderObject* renderer) in nextContinuation()
211 RenderBoxModelObject* RenderInline::continuationBefore(RenderObject* beforeChild) in continuationBefore()
216 RenderBoxModelObject* curr = nextContinuation(this); in continuationBefore()
[all …]
DRenderObject.h54 class RenderBoxModelObject; variable
181 RenderBoxModelObject* enclosingBoxModelObject() const;
399 virtual RenderBoxModelObject* virtualContinuation() const { return 0; } in virtualContinuation()
476 …RenderObject* container(RenderBoxModelObject* repaintContainer = 0, bool* repaintContainerSkipped …
481 RenderBoxModelObject* offsetParent() const;
570 …FloatQuad localToContainerQuad(const FloatQuad&, RenderBoxModelObject* repaintContainer, bool fixe…
611 RenderBoxModelObject* containerForRepaint() const;
614 …void repaintUsingContainer(RenderBoxModelObject* repaintContainer, const IntRect& r, bool immediat…
624 …bool repaintAfterLayoutIfNeeded(RenderBoxModelObject* repaintContainer, const IntRect& oldBounds, …
640 virtual IntRect clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContainer);
[all …]
DRenderBox.h38 class RenderBox : public RenderBoxModelObject {
124 …virtual IntRect outlineBoundsForRepaint(RenderBoxModelObject* /*repaintContainer*/, IntPoint* cach…
276 virtual IntRect clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContainer);
277 …virtual void computeRectForRepaint(RenderBoxModelObject* repaintContainer, IntRect&, bool fixed = …
426 …virtual void mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool fixed, bool useTrans…
438 …int containingBlockLogicalWidthForPositioned(const RenderBoxModelObject* containingBlock, bool che…
439 …int containingBlockLogicalHeightForPositioned(const RenderBoxModelObject* containingBlock, bool ch…
442 …void computePositionedLogicalWidthUsing(Length logicalWidth, const RenderBoxModelObject* container…
446 …void computePositionedLogicalHeightUsing(Length logicalHeight, const RenderBoxModelObject* contain…
DRenderReplaced.h70 virtual IntRect clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContainer);
77 …virtual IntRect selectionRectForRepaint(RenderBoxModelObject* repaintContainer, bool clipToVisible…
DRenderBlock.h123 GapRects selectionGapRectsForRepaint(RenderBoxModelObject* repaintContainer);
143 virtual RenderBoxModelObject* virtualContinuation() const { return continuation(); } in virtualContinuation()
148 using RenderBoxModelObject::continuation;
149 using RenderBoxModelObject::setContinuation;
183 int marginBeforeForChild(RenderBoxModelObject* child) const;
184 int marginAfterForChild(RenderBoxModelObject* child) const;
185 int marginStartForChild(RenderBoxModelObject* child) const;
186 int marginEndForChild(RenderBoxModelObject* child) const;
565 …virtual IntRect rectWithOutlineForRepaint(RenderBoxModelObject* repaintContainer, int outlineWidth…
572 …virtual IntRect selectionRectForRepaint(RenderBoxModelObject* repaintContainer, bool /*clipToVisib… in selectionRectForRepaint()
[all …]
DRenderSelectionInfo.h51 RenderBoxModelObject* repaintContainer() const { return m_repaintContainer; } in repaintContainer()
56 RenderBoxModelObject* m_repaintContainer;
DRenderLineBoxList.cpp149 bool RenderLineBoxList::rangeIntersectsRect(RenderBoxModelObject* renderer, int logicalTop, int log… in rangeIntersectsRect()
174 bool RenderLineBoxList::anyLineIntersectsRect(RenderBoxModelObject* renderer, const IntRect& rect, … in anyLineIntersectsRect()
194 bool RenderLineBoxList::lineIntersectsDirtyRect(RenderBoxModelObject* renderer, InlineFlowBox* box,… in lineIntersectsDirtyRect()
203 void RenderLineBoxList::paint(RenderBoxModelObject* renderer, PaintInfo& paintInfo, int tx, int ty)… in paint()
277 bool RenderLineBoxList::hitTest(RenderBoxModelObject* renderer, const HitTestRequest& request, HitT… in hitTest()
/external/webkit/Source/WebCore/rendering/svg/
DRenderSVGModelObject.h54 virtual IntRect clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContainer);
55 …virtual void computeRectForRepaint(RenderBoxModelObject* repaintContainer, IntRect&, bool fixed = …
56 … virtual IntRect outlineBoundsForRepaint(RenderBoxModelObject* repaintContainer, IntPoint*) const;
63 …virtual void mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool useTransforms, bool …
DSVGRenderSupport.h35 class RenderBoxModelObject; variable
64 …static IntRect clippedOverflowRectForRepaint(RenderObject*, RenderBoxModelObject* repaintContainer…
65 …static void computeRectForRepaint(RenderObject*, RenderBoxModelObject* repaintContainer, IntRect&,…
66 …static void mapLocalToContainer(const RenderObject*, RenderBoxModelObject* repaintContainer, bool …
DRenderSVGModelObject.cpp46 IntRect RenderSVGModelObject::clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContainer) in clippedOverflowRectForRepaint()
51 void RenderSVGModelObject::computeRectForRepaint(RenderBoxModelObject* repaintContainer, IntRect& r… in computeRectForRepaint()
56 void RenderSVGModelObject::mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool fixed ,… in mapLocalToContainer()
64 IntRect RenderSVGModelObject::outlineBoundsForRepaint(RenderBoxModelObject* repaintContainer, IntPo… in outlineBoundsForRepaint()
DRenderSVGInline.h48 virtual IntRect clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContainer);
49 …virtual void computeRectForRepaint(RenderBoxModelObject* repaintContainer, IntRect&, bool fixed = …
50 …virtual void mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool useTransforms, bool …
DRenderSVGForeignObject.h42 virtual IntRect clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContainer);
43 …virtual void computeRectForRepaint(RenderBoxModelObject* repaintContainer, IntRect&, bool fixed = …
56 …virtual void mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool fixed , bool useTran…
DRenderSVGText.h65 virtual IntRect clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContainer);
66 …virtual void computeRectForRepaint(RenderBoxModelObject* repaintContainer, IntRect&, bool fixed = …
68 …virtual void mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool useTransforms, bool …
DRenderSVGInline.cpp70 IntRect RenderSVGInline::clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContainer) in clippedOverflowRectForRepaint()
75 void RenderSVGInline::computeRectForRepaint(RenderBoxModelObject* repaintContainer, IntRect& repain… in computeRectForRepaint()
80 void RenderSVGInline::mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool useTransform… in mapLocalToContainer()
DRenderSVGRoot.h78 virtual IntRect clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContainer);
79 …virtual void computeRectForRepaint(RenderBoxModelObject* repaintContainer, IntRect& repaintRect, b…
81 …virtual void mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool useTransforms, bool …
DRenderSVGForeignObject.cpp71 IntRect RenderSVGForeignObject::clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContaine… in clippedOverflowRectForRepaint()
76 void RenderSVGForeignObject::computeRectForRepaint(RenderBoxModelObject* repaintContainer, IntRect&… in computeRectForRepaint()
163 void RenderSVGForeignObject::mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool fixed… in mapLocalToContainer()
DRenderSVGText.cpp85 IntRect RenderSVGText::clippedOverflowRectForRepaint(RenderBoxModelObject* repaintContainer) in clippedOverflowRectForRepaint()
90 void RenderSVGText::computeRectForRepaint(RenderBoxModelObject* repaintContainer, IntRect& repaintR… in computeRectForRepaint()
95 void RenderSVGText::mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool fixed, bool us… in mapLocalToContainer()
/external/webkit/Source/WebCore/rendering/mathml/
DRenderMathMLBlock.h58 RenderBoxModelObject* box = toRenderBoxModelObject(object); in getBoxModelObjectHeight()
67 const RenderBoxModelObject* box = toRenderBoxModelObject(object); in getBoxModelObjectHeight()
76 RenderBoxModelObject* box = toRenderBoxModelObject(object); in getBoxModelObjectWidth()
85 const RenderBoxModelObject* box = toRenderBoxModelObject(object); in getBoxModelObjectWidth()
DRenderMathMLSubSup.cpp127 RenderBoxModelObject* topBox = toRenderBoxModelObject(top); in stretchToHeight()
189 RenderBoxModelObject* box = toRenderBoxModelObject(base); in baselinePosition()
201 RenderBoxModelObject* box = toRenderBoxModelObject(base); in baselinePosition()
DRenderMathMLRow.cpp55 RenderBoxModelObject* box = toRenderBoxModelObject(current); in nonOperatorHeight()
91 RenderBoxModelObject* box = toRenderBoxModelObject(current); in layout()
DRenderMathMLRoot.cpp110 RenderBoxModelObject* indexBox = toRenderBoxModelObject(lastChild()); in paint()
122 RenderBoxModelObject* box = toRenderBoxModelObject(current); in paint()
235 RenderBoxModelObject* indexBox = toRenderBoxModelObject(possibleIndex); in layout()

1234