Home
last modified time | relevance | path

Searched refs:m_rowPos (Results 1 – 2 of 2) sorted by relevance

/external/webkit/WebCore/rendering/
DRenderTableSection.cpp347 m_rowPos.resize(m_gridRows + 1); in setCellWidths()
348 m_rowPos[0] = spacing; in setCellWidths()
351 m_rowPos[r + 1] = 0; in setCellWidths()
356 int pos = m_rowPos[r] + ch + (m_grid[r].rowRenderer ? spacing : 0); in setCellWidths()
358 m_rowPos[r + 1] = max(m_rowPos[r + 1], pos); in setCellWidths()
395 pos = m_rowPos[indx] + ch + (m_grid[r].rowRenderer ? spacing : 0); in setCellWidths()
397 m_rowPos[r + 1] = max(m_rowPos[r + 1], pos); in setCellWidths()
405 bdesc = max(bdesc, m_rowPos[indx] + ch - (b - cell->intrinsicPaddingTop())); in setCellWidths()
413m_rowPos[r + 1] = max(m_rowPos[r + 1], baseline + bdesc + (m_grid[r].rowRenderer ? spacing : 0)); in setCellWidths()
417 m_rowPos[r + 1] = max(m_rowPos[r + 1], m_rowPos[r]); in setCellWidths()
[all …]
DRenderTableSection.h138 Vector<int> m_rowPos; variable