Searched refs:CellSpan (Results 1 – 2 of 2) sorted by relevance
41 class CellSpan {43 CellSpan(unsigned start, unsigned end) in CellSpan() function266 CellSpan fullTableRowSpan() const { return CellSpan(0, m_grid.size()); } in fullTableRowSpan()267 CellSpan fullTableColumnSpan() const { return CellSpan(0, table()->columns().size()); } in fullTableColumnSpan()272 CellSpan dirtiedRows(const LayoutRect& repaintRect) const;273 CellSpan dirtiedColumns(const LayoutRect& repaintRect) const;277 CellSpan spannedRows(const LayoutRect& flippedRect) const;278 CellSpan spannedColumns(const LayoutRect& flippedRect) const;
1376 CellSpan RenderTableSection::dirtiedRows(const LayoutRect& damageRect) const in dirtiedRows()1381 CellSpan coveredRows = spannedRows(damageRect); in dirtiedRows()1393 CellSpan RenderTableSection::dirtiedColumns(const LayoutRect& damageRect) const in dirtiedColumns()1398 CellSpan coveredColumns = spannedColumns(damageRect); in dirtiedColumns()1411 CellSpan RenderTableSection::spannedRows(const LayoutRect& flippedRect) const in spannedRows()1417 return CellSpan(m_rowPos.size() - 1, m_rowPos.size() - 1); // After all rows. in spannedRows()1431 return CellSpan(startRow, endRow); in spannedRows()1434 CellSpan RenderTableSection::spannedColumns(const LayoutRect& flippedRect) const in spannedColumns()1446 return CellSpan(columnPos.size() - 1, columnPos.size() - 1); // After all columns. in spannedColumns()1460 return CellSpan(startColumn, endColumn); in spannedColumns()[all …]