Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DFixedTableLayout.cpp85 unsigned nEffCols = m_table->numEffCols(); in calcWidthArray() local
86 m_width.resize(nEffCols); in calcWidthArray()
108 if (currentEffectiveColumn >= nEffCols) { in calcWidthArray()
110 nEffCols++; in calcWidthArray()
116 nEffCols++; in calcWidthArray()
156 while (usedSpan < span && currentColumn < nEffCols) { in calcWidthArray()
208 unsigned nEffCols = m_table->numEffCols(); in layout() local
212 if (nEffCols != m_width.size()) { in layout()
215 nEffCols = m_table->numEffCols(); in layout()
218 Vector<int> calcWidth(nEffCols, 0); in layout()
[all …]
DAutoTableLayout.cpp145 unsigned nEffCols = m_table->numEffCols(); in fullRecalc() local
146 m_layoutStruct.resize(nEffCols); in fullRecalc()
163 …if (!colLogicalWidth.isAuto() && span == 1 && effCol < nEffCols && m_table->spanOfEffCol(effCol) =… in fullRecalc()
176 for (unsigned i = 0; i < nEffCols; i++) in fullRecalc()
280 size_t nEffCols = m_layoutStruct.size(); in calcEffectiveLogicalWidth() local
283 for (size_t i = 0; i < nEffCols; ++i) { in calcEffectiveLogicalWidth()
313 while (lastCol < nEffCols && span > 0) { in calcEffectiveLogicalWidth()
499 size_t nEffCols = m_table->numEffCols(); in layout() local
503 if (nEffCols != m_layoutStruct.size()) { in layout()
506 nEffCols = m_table->numEffCols(); in layout()
[all …]
DRenderTableSection.cpp951 unsigned nEffCols = table()->numEffCols(); in layoutRows() local
968 for (unsigned c = 0; c < nEffCols; c++) { in layoutRows()
1067 for (unsigned c = 0; c < nEffCols; ++c) { in layoutRows()
1082 computeOverflowFromCells(totalRows, nEffCols); in layoutRows()
1088 unsigned nEffCols = table()->numEffCols(); in computeOverflowFromCells() local
1089 computeOverflowFromCells(totalRows, nEffCols); in computeOverflowFromCells()
1092 void RenderTableSection::computeOverflowFromCells(unsigned totalRows, unsigned nEffCols) in computeOverflowFromCells() argument
1094 unsigned totalCellsCount = nEffCols * totalRows; in computeOverflowFromCells()
1102 for (unsigned c = 0; c < nEffCols; c++) { in computeOverflowFromCells()
DRenderTableSection.h282 void computeOverflowFromCells(unsigned totalRows, unsigned nEffCols);