/external/webkit/Source/WebCore/rendering/ |
D | RenderTable.cpp | 52 RenderTable::RenderTable(Node* node) in RenderTable() function in WebCore::RenderTable 75 RenderTable::~RenderTable() in ~RenderTable() 79 void RenderTable::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle) in styleDidChange() 112 void RenderTable::addChild(RenderObject* child, RenderObject* beforeChild) in addChild() 209 void RenderTable::removeChild(RenderObject* oldChild) in removeChild() 218 void RenderTable::computeLogicalWidth() in computeLogicalWidth() 272 void RenderTable::adjustLogicalHeightForCaption() in adjustLogicalHeightForCaption() 284 void RenderTable::layout() in layout() 476 void RenderTable::addOverflowFromChildren() in addOverflowFromChildren() 506 void RenderTable::setCellLogicalWidths() in setCellLogicalWidths() [all …]
|
D | RenderTable.h | 40 class RenderTable : public RenderBlock { 42 explicit RenderTable(Node*); 43 virtual ~RenderTable(); 273 inline RenderTable* toRenderTable(RenderObject* object) in toRenderTable() 276 return static_cast<RenderTable*>(object); in toRenderTable() 279 inline const RenderTable* toRenderTable(const RenderObject* object) in toRenderTable() 282 return static_cast<const RenderTable*>(object); in toRenderTable() 286 void toRenderTable(const RenderTable*);
|
D | TableLayout.h | 29 class RenderTable; variable 34 TableLayout(RenderTable* table) in TableLayout() 45 RenderTable* m_table;
|
D | FixedTableLayout.h | 30 class RenderTable; variable 34 FixedTableLayout(RenderTable*);
|
D | AutoTableLayout.h | 30 class RenderTable; variable 35 AutoTableLayout(RenderTable*);
|
D | RenderTableCol.h | 33 class RenderTable; variable 62 RenderTable* table() const;
|
D | RenderTableCol.cpp | 79 RenderTable* parentTable = table(); in clippedOverflowRectForRepaint() 99 RenderTable* RenderTableCol::table() const in table()
|
D | RenderTableCell.cpp | 401 RenderTable* table = this->table(); in collapsedStartBorder() 464 RenderTable* table = this->table(); in collapsedEndBorder() 530 RenderTable* table = this->table(); in collapsedBeforeBorder() 608 RenderTable* table = this->table(); in collapsedAfterBorder() 981 RenderTable* tableElt = table(); in paintBackgroundsBehindCell() 1017 RenderTable* tableElt = table(); in paintBoxDecorations() 1042 RenderTable* tableElt = table(); in paintMask()
|
D | RenderTableRow.h | 40 RenderTable* table() const { return toRenderTable(parent()->parent()); } in table()
|
D | RenderTableSection.h | 54 RenderTable* table() const { return toRenderTable(parent()); } in table()
|
D | RenderTableCell.h | 52 RenderTable* table() const { return toRenderTable(parent()->parent()->parent()); } in table()
|
D | RenderTableRow.cpp | 183 if (RenderTable* parentTable = table()) in clippedOverflowRectForRepaint()
|
D | FixedTableLayout.cpp | 75 FixedTableLayout::FixedTableLayout(RenderTable* table) in FixedTableLayout()
|
D | AutoTableLayout.cpp | 34 AutoTableLayout::AutoTableLayout(RenderTable* table) in AutoTableLayout() 189 static bool shouldScaleColumns(RenderTable* table) in shouldScaleColumns()
|
D | RenderTableSection.cpp | 89 RenderTable* recalcTable = table(); in destroy() 193 Vector<RenderTable::ColumnStruct>& columns = table()->columns(); in addCell() 1203 if (RenderTable* t = table()) in setCellLogicalWidths()
|
D | RenderObject.cpp | 150 return new (arena) RenderTable(node); in createObject() 307 RenderTable* table; in addChild() 312 table = new (renderArena()) RenderTable(document() /* is anonymous */); in addChild()
|
/external/webkit/Source/WebCore/accessibility/ |
D | AccessibilityTable.cpp | 104 RenderTable* table = toRenderTable(m_renderer); in isDataTable() 297 RenderTable* table = toRenderTable(m_renderer); in addChildren() 457 RenderTable* table = toRenderTable(m_renderer); in cellForColumnAndRow()
|
D | AccessibilityTableCell.cpp | 112 RenderTable* table = renderCell->table(); in rowIndexRange()
|
D | AccessibilityTableColumn.cpp | 108 RenderTable* table = toRenderTable(renderer); in headerObject()
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2003-10-25 | 91 (RenderTable::firstLineBlock): 92 (RenderTable::updateFirstLetter): 456 (RenderTable::cellRight): 608 (RenderTable::RenderTable): 609 (RenderTable::setStyle): 610 (RenderTable::calcWidth): 611 (RenderTable::paint): 612 (RenderTable::borderLeft): 613 (RenderTable::borderRight): 614 (RenderTable::borderTop): [all …]
|
D | ChangeLog-2002-12-03 | 9 (RenderTable::addChild): 762 (RenderTable::layoutRows): 1007 (RenderTable::paint): 1641 - fixed 3100235 -- nil-deference in khtml::RenderTable at money.cnn.com 1696 (RenderContainer::addChild): Create the RenderTable with the appropriate arena. 1776 (RenderTable::RenderTable): 2045 (RenderTable::addChild): 2046 (RenderTable::calcWidth): 2047 (RenderTable::setCellWidths): 3773 (RenderTable::print): [all …]
|
D | ChangeLog-2007-10-14 | 5481 * rendering/RenderTable.cpp: 5482 * rendering/RenderTable.h: 18509 Bug 13985: WebCore/rendering/RenderTable.cpp fails to compile with gcc 4.2.x 18511 * rendering/RenderTable.cpp: 18512 (WebKit::RenderTable::calcBorderLeft) 18513 (WebKit::RenderTable::calcBorderRight) 21321 * rendering/RenderTable.cpp: 21322 (WebCore::RenderTable::layout): Mark the caption for layout if the table 35634 * rendering/RenderTable.cpp: 35635 (WebCore::RenderTable::layout): [all …]
|
D | ChangeLog-2006-05-10 | 97 * rendering/RenderTable.h: Added an include of DeprecatedArray.h. 5396 * rendering/RenderTable.cpp: 5397 (WebCore::RenderTable::calcWidth): 5398 (WebCore::RenderTable::layout): 5399 (WebCore::RenderTable::paintBoxDecorations): 5564 * rendering/RenderTable.cpp: 7343 * rendering/RenderTable.cpp: 7344 (WebCore::RenderTable::recalcSectionsIfNeeded): Add new utility to let the cells 7346 * rendering/RenderTable.h: 8091 * rendering/RenderTable.cpp: [all …]
|
/external/webkit/Source/WebKit/android/jni/ |
D | WebSettings.cpp | 297 (static_cast<WebCore::RenderTable *>(obj))->clearSingleColumn(); in recursiveCleanupForFullLayout()
|
/external/webkit/Source/WebCore/editing/ |
D | TextIterator.cpp | 732 RenderTable* t = rc->table(); in shouldEmitTabBeforeNode() 781 RenderTable* t = toRenderTableRow(r)->table(); in shouldEmitNewlinesBeforeAndAfterNode()
|