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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
AutoTableLayout.h 46 void recalcColumn(unsigned effCol);
AutoTableLayout.cpp 44 void AutoTableLayout::recalcColumn(unsigned effCol)
46 Layout& columnLayout = m_layoutStruct[effCol];
61 RenderTableSection::CellStruct current = section->cellAt(i, effCol);
121 } else if (!effCol || section->primaryCellAt(i, effCol - 1) != cell) {
161 unsigned effCol = m_table->colToEffCol(currentColumn);
163 if (!colLogicalWidth.isAuto() && span == 1 && effCol < nEffCols && m_table->spanOfEffCol(effCol) == 1) {
164 m_layoutStruct[effCol].logicalWidth = colLogicalWidth;
165 if (colLogicalWidth.isFixed() && m_layoutStruct[effCol].maxLogicalWidth < colLogicalWidth.value()
    [all...]
RenderTable.h 170 unsigned spanOfEffCol(unsigned effCol) const { return m_columns[effCol].span; }
184 unsigned effColToCol(unsigned effCol) const
187 return effCol;
190 for (unsigned i = 0; i < effCol; i++)
RenderTable.cpp     [all...]

Completed in 3091 milliseconds