Searched defs:totalRows (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLFrameSetElement.h41 size_t totalRows() const { return std::max<size_t>(1, m_rowLengths.size()); } function in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/core/paint/
H A DTableSectionPainter.cpp27 unsigned totalRows = m_renderTableSection.numRows(); local
30 if (!totalRows || !totalCols)
106 unsigned totalRows = m_renderTableSection.numRows(); local
108 ASSERT(overflowingCells.size() < totalRows * totalCols * gMaxAllowedOverflowingCellRatioForFastPaintPath);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTableSection.cpp838 unsigned totalRows = m_grid.size(); local
839 int totalHeight = m_rowPos[totalRows] + extraLogicalHeight;
843 for (unsigned r = 0; r < totalRows; ++r) {
853 ASSERT(totalRows >= 1);
854 if (r < totalRows - 1)
880 unsigned totalRows = m_grid.size(); local
882 if (extraLogicalHeight <= 0 || !m_rowPos[totalRows])
885 // FIXME: m_rowPos[totalRows] - m_rowPos[0] is the total rows' size.
886 int totalRowSize = m_rowPos[totalRows];
889 for (unsigned r = 0; r < totalRows;
904 unsigned totalRows = m_grid.size(); local
942 unsigned totalRows = m_grid.size(); local
1087 unsigned totalRows = m_grid.size(); local
1092 computeOverflowFromCells(unsigned totalRows, unsigned nEffCols) argument
[all...]

Completed in 627 milliseconds