Home | History | Annotate | Download | only in rendering

Lines Matching refs:RenderBox

38 class RenderBox : public RenderBoxModelObject {
40 RenderBox(Node*);
41 virtual ~RenderBox();
44 RenderBox* firstChildBox() const;
45 RenderBox* lastChildBox() const;
128 RenderBox* previousSiblingBox() const;
129 RenderBox* nextSiblingBox() const;
130 RenderBox* parentBox() const;
156 void addOverflowFromChild(RenderBox* child) { addOverflowFromChild(child, IntSize(child->x(), child->y())); }
157 void addOverflowFromChild(RenderBox* child, const IntSize& delta);
386 IntPoint flipForWritingMode(const RenderBox* child, const IntPoint&, FlippingAdjustment) const;
497 inline RenderBox* toRenderBox(RenderObject* object)
500 return static_cast<RenderBox*>(object);
503 inline const RenderBox* toRenderBox(const RenderObject* object)
506 return static_cast<const RenderBox*>(object);
510 void toRenderBox(const RenderBox*);
512 inline RenderBox* RenderBox::previousSiblingBox() const
517 inline RenderBox* RenderBox::nextSiblingBox() const
522 inline RenderBox* RenderBox::parentBox() const
527 inline RenderBox* RenderBox::firstChildBox() const
532 inline RenderBox* RenderBox::lastChildBox() const