HomeSort by relevance Sort by last modified time
    Searched defs:RenderTableSection (Results 1 - 2 of 2) sorted by null

  /external/webkit/WebCore/rendering/
RenderTableSection.h 36 class RenderTableSection : public RenderBox {
38 RenderTableSection(Node*);
39 virtual ~RenderTableSection();
109 virtual const char* renderName() const { return isAnonymous() ? "RenderTableSection (anonymous)" : "RenderTableSection"; }
155 inline RenderTableSection* toRenderTableSection(RenderObject* object)
158 return static_cast<RenderTableSection*>(object);
161 inline const RenderTableSection* toRenderTableSection(const RenderObject* object)
164 return static_cast<const RenderTableSection*>(object);
168 void toRenderTableSection(const RenderTableSection*);
    [all...]
RenderTableSection.cpp 27 #include "RenderTableSection.h"
49 static inline void setRowHeightToRowStyleHeightIfNotRelative(RenderTableSection::RowStruct* row)
57 RenderTableSection::RenderTableSection(Node* node)
73 RenderTableSection::~RenderTableSection()
78 void RenderTableSection::destroy()
85 // stored that point to this RenderTableSection.
90 void RenderTableSection::addChild(RenderObject* child, RenderObject* beforeChild)
148 void RenderTableSection::removeChild(RenderObject* oldChild
    [all...]

Completed in 403 milliseconds