Home | History | Annotate | Download | only in rendering

Lines Matching defs:RenderBox

66     // Set by RenderBox::updatePreviousBorderBoxSizeIfNeeded().
70 class RenderBox : public RenderBoxModelObject {
72 explicit RenderBox(ContainerNode*);
89 RenderBox* firstChildBox() const;
90 RenderBox* lastChildBox() const;
200 RenderBox* previousSiblingBox() const;
201 RenderBox* nextSiblingBox() const;
202 RenderBox* parentBox() const;
231 void addOverflowFromChild(RenderBox* child) { addOverflowFromChild(child, child->locationOffset()); }
232 void addOverflowFromChild(RenderBox* child, const LayoutSize& delta);
345 // the border-box height/width like the regular height/width accessors on RenderBox.
479 static RenderBox* findAutoscrollable(RenderObject*);
553 LayoutPoint flipForWritingModeForChild(const RenderBox* child, const LayoutPoint&) const;
602 virtual RenderBox* createAnonymousBoxWithSameTypeAs(const RenderObject*) const
608 bool hasSameDirectionAs(const RenderBox* object) const { return style()->direction() == object->style()->direction(); }
633 // FIXME: make this a const method once the RenderBox reference in BoxPainter is const.
675 bool skipContainingBlockForPercentHeightCalculation(const RenderBox* containingBlock) const;
745 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderBox, isBox());
747 inline RenderBox* RenderBox::previousSiblingBox() const
752 inline RenderBox* RenderBox::nextSiblingBox() const
757 inline RenderBox* RenderBox::parentBox() const
762 inline RenderBox* RenderBox::firstChildBox() const
767 inline RenderBox* RenderBox::lastChildBox() const
772 inline void RenderBox::setInlineBoxWrapper(InlineBox* boxWrapper)