Home
last modified time | relevance | path

Searched refs:effCol (Results 1 – 4 of 4) sorted by relevance

/external/webkit/Source/WebCore/rendering/
DAutoTableLayout.cpp45 void AutoTableLayout::recalcColumn(int effCol) in recalcColumn() argument
47 Layout& columnLayout = m_layoutStruct[effCol]; in recalcColumn()
59 RenderTableSection::CellStruct current = section->cellAt(i, effCol); in recalcColumn()
119 } else if (!effCol || section->primaryCellAt(i, effCol - 1) != cell) { in recalcColumn()
165 int effCol = m_table->colToEffCol(currentColumn); in fullRecalc() local
166 …if (!colLogicalWidth.isAuto() && span == 1 && effCol < nEffCols && m_table->spanOfEffCol(effCol) =… in fullRecalc()
167 m_layoutStruct[effCol].logicalWidth = colLogicalWidth; in fullRecalc()
168 … if (colLogicalWidth.isFixed() && m_layoutStruct[effCol].maxLogicalWidth < colLogicalWidth.value()) in fullRecalc()
169 m_layoutStruct[effCol].maxLogicalWidth = colLogicalWidth.value(); in fullRecalc()
302 int effCol = m_table->colToEffCol(cell->col()); in calcEffectiveLogicalWidth() local
[all …]
DRenderTable.h150 int spanOfEffCol(int effCol) const { return m_columns[effCol].span; } in spanOfEffCol() argument
155 int effCol = numEffCols(); in colToEffCol() local
156 for (int c = 0; c < col && i < effCol; ++i) in colToEffCol()
161 int effColToCol(int effCol) const in effColToCol() argument
164 for (int i = 0; i < effCol; i++) in effColToCol()
DRenderTable.cpp1150 int effCol = colToEffCol(cell->col()); in cellAbove() local
1151 RenderTableSection::CellStruct& aboveCell = section->cellAt(rAbove, effCol); in cellAbove()
1177 int effCol = colToEffCol(cell->col()); in cellBelow() local
1178 RenderTableSection::CellStruct& belowCell = section->cellAt(rBelow, effCol); in cellBelow()
1189 int effCol = colToEffCol(cell->col()); in cellBefore() local
1190 if (!effCol) in cellBefore()
1194 RenderTableSection::CellStruct& prevCell = section->cellAt(cell->row(), effCol - 1); in cellBefore()
1202 int effCol = colToEffCol(cell->col() + cell->colSpan()); in cellAfter() local
1203 if (effCol >= numEffCols()) in cellAfter()
1205 return cell->section()->primaryCellAt(cell->row(), effCol); in cellAfter()
DAutoTableLayout.h43 void recalcColumn(int effCol);