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

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTableSection.cpp319 void RenderTableSection::distributeExtraRowSpanHeightToPercentRows(RenderTableCell* cell, int totalPercent, int& extraRowSpanningHeight, Vector<int>& rowsHeight) argument
321 if (!extraRowSpanningHeight || !totalPercent)
327 const int tableHeight = m_rowPos[m_grid.size()] + extraRowSpanningHeight;
333 if (percent > 0 && extraRowSpanningHeight > 0) {
339 toAdd = std::min(toAdd, extraRowSpanningHeight);
341 extraRowSpanningHeight -= toAdd;
365 void RenderTableSection::distributeWholeExtraRowSpanHeightToPercentRows(RenderTableCell* cell, int totalPercent, int& extraRowSpanningHeight, Vector<int>& rowsHeight) argument
367 if (!extraRowSpanningHeight || !totalPercent)
377 updatePositionIncreasedWithRowHeight(extraRowSpanningHeight, m_grid[row].logicalHeight.percent(), totalPercent, accumulatedPositionIncrease, remainder);
393 extraRowSpanningHeight
396 distributeExtraRowSpanHeightToAutoRows(RenderTableCell* cell, int totalAutoRowsHeight, int& extraRowSpanningHeight, Vector<int>& rowsHeight) argument
429 distributeExtraRowSpanHeightToRemainingRows(RenderTableCell* cell, int totalRemainingRowsHeight, int& extraRowSpanningHeight, Vector<int>& rowsHeight) argument
650 int extraRowSpanningHeight = spanningRowsHeight.spanningCellHeightIgnoringBorderSpacing - spanningRowsHeight.totalRowsHeight; local
[all...]

Completed in 130 milliseconds