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

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

Completed in 1531 milliseconds