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

  /external/webkit/Source/WebCore/accessibility/
AccessibilityTableColumn.h 38 class RenderTableSection;
70 AccessibilityObject* headerObjectForSection(RenderTableSection*, bool thTagRequired);
AccessibilityTableCell.cpp 111 RenderTableSection* section = renderCell->section();
116 RenderTableSection* tableSection = table->header();
164 RenderTableSection* section = renderCell->section();
AccessibilityTable.cpp 44 #include "RenderTableSection.h"
120 RenderTableSection* firstBody = table->firstBody();
302 RenderTableSection* tableSection = table->header();
309 RenderTableSection* initialTableSection = tableSection;
458 RenderTableSection* tableSection = table->header();
AccessibilityTableColumn.cpp 37 #include "RenderTableSection.h"
124 AccessibilityObject* AccessibilityTableColumn::headerObjectForSection(RenderTableSection* section, bool thTagRequired)
  /external/webkit/Source/WebCore/rendering/
RenderTableSection.h 36 class RenderTableSection : public RenderBox {
38 RenderTableSection(Node*);
39 virtual ~RenderTableSection();
128 virtual const char* renderName() const { return isAnonymous() ? "RenderTableSection (anonymous)" : "RenderTableSection"; }
171 inline RenderTableSection* toRenderTableSection(RenderObject* object)
174 return static_cast<RenderTableSection*>(object);
177 inline const RenderTableSection* toRenderTableSection(const RenderObject* object)
180 return static_cast<const RenderTableSection*>(object);
184 void toRenderTableSection(const RenderTableSection*);
    [all...]
RenderTable.h 37 class RenderTableSection;
143 RenderTableSection* header() const { return m_head; }
144 RenderTableSection* footer() const { return m_foot; }
145 RenderTableSection* firstBody() const { return m_firstBody; }
187 RenderTableSection* sectionAbove(const RenderTableSection*, bool skipEmptySections = false) const;
188 RenderTableSection* sectionBelow(const RenderTableSection*, bool skipEmptySections = false) const;
253 mutable RenderTableSection* m_head;
254 mutable RenderTableSection* m_foot
    [all...]
RenderTableSection.cpp 27 #include "RenderTableSection.h"
51 static inline void setRowLogicalHeightToRowStyleLogicalHeightIfNotRelative(RenderTableSection::RowStruct* row)
59 RenderTableSection::RenderTableSection(Node* node)
76 RenderTableSection::~RenderTableSection()
81 void RenderTableSection::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle)
87 void RenderTableSection::destroy()
94 // stored that point to this RenderTableSection.
99 void RenderTableSection::addChild(RenderObject* child, RenderObject* beforeChild
    [all...]
RenderTable.cpp 40 #include "RenderTableSection.h"
101 static inline void resetSectionPointerIfNotBefore(RenderTableSection*& ptr, RenderObject* before)
200 RenderTableSection* section = new (renderArena()) RenderTableSection(document() /* anonymous */);
367 RenderTableSection* section = toRenderTableSection(child);
431 RenderTableSection* section = m_head ? m_head : (m_firstBody ? m_firstBody : m_foot);
500 RenderTableSection* section = toRenderTableSection(child);
796 RenderTableSection* section = toRenderTableSection(child);
806 RenderTableSection* section = toRenderTableSection(child);
816 RenderTableSection* section = toRenderTableSection(child)
    [all...]
RenderTableRow.h 28 #include "RenderTableSection.h"
39 RenderTableSection* section() const { return toRenderTableSection(parent()); }
RenderTableCell.h 28 #include "RenderTableSection.h"
51 RenderTableSection* section() const { return toRenderTableSection(parent()->parent()); }
FixedTableLayout.cpp 28 #include "RenderTableSection.h"
142 RenderTableSection* section = m_table->header();
RenderTableRow.cpp 48 RenderTableSection* recalcSection = section();
168 // RenderTableSection::layoutRows will set our logical height and width later, so it calls updateLayerTransform().
RenderTableCell.cpp 64 RenderTableSection* recalcSection = parent() ? section() : 0;
567 RenderTableSection* currSection = section();
637 RenderTableSection* currSection = section();
    [all...]
AutoTableLayout.cpp 28 #include "RenderTableSection.h"
56 RenderTableSection* section = toRenderTableSection(child);
59 RenderTableSection::CellStruct current = section->cellAt(i, effCol);
    [all...]
RenderObject.cpp 154 return new (arena) RenderTableSection(node);
    [all...]
  /external/webkit/Source/WebCore/
Android.mk 961 rendering/RenderTableSection.cpp \
    [all...]

Completed in 3540 milliseconds