Home | History | Annotate | Download | only in rendering

Lines Matching refs:CellSpan

1250 CellSpan RenderTableSection::dirtiedRows(const LayoutRect& damageRect) const
1255 CellSpan coveredRows = spannedRows(damageRect);
1267 CellSpan RenderTableSection::dirtiedColumns(const LayoutRect& damageRect) const
1272 CellSpan coveredColumns = spannedColumns(damageRect);
1285 CellSpan RenderTableSection::spannedRows(const LayoutRect& flippedRect) const
1291 return CellSpan(m_rowPos.size() - 1, m_rowPos.size() - 1); // After all rows.
1305 return CellSpan(startRow, endRow);
1308 CellSpan RenderTableSection::spannedColumns(const LayoutRect& flippedRect) const
1320 return CellSpan(columnPos.size() - 1, columnPos.size() - 1); // After all columns.
1334 return CellSpan(startColumn, endColumn);
1348 CellSpan dirtiedRows = this->dirtiedRows(tableAlignedRect);
1349 CellSpan dirtiedColumns = this->dirtiedColumns(tableAlignedRect);
1614 CellSpan rowSpan = spannedRows(tableAlignedRect);
1615 CellSpan columnSpan = spannedColumns(tableAlignedRect);