Home
last modified time | relevance | path

Searched refs:columnPos (Results 1 – 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/rendering/
DRenderTableSection.cpp261 Vector<int>& columnPos = table()->columnPositions(); in setCellLogicalWidths() local
290 int w = columnPos[endCol] - columnPos[j] - table()->hBorderSpacing(); in setCellLogicalWidths()
1101 Vector<int>& columnPos = table()->columnPositions(); in setCellLogicalWidths() local
1102 startcol = std::lower_bound(columnPos.begin(), columnPos.end(), start) - columnPos.begin(); in setCellLogicalWidths()
1103 if ((startcol == columnPos.size()) || (startcol > 0 && (columnPos[startcol] > start))) in setCellLogicalWidths()
1107 endcol = std::lower_bound(columnPos.begin(), columnPos.end(), end) - columnPos.begin(); in setCellLogicalWidths()
1108 if (endcol == columnPos.size()) in setCellLogicalWidths()
1111 if (!endcol && columnPos[0] - table()->outerBorderStart() <= end) in setCellLogicalWidths()
1299 Vector<int>& columnPos = table()->columnPositions(); in setCellLogicalWidths() local
1302 offsetInRowDirection = columnPos[columnPos.size() - 1] - offsetInRowDirection; in setCellLogicalWidths()
[all …]
/external/webkit/Source/WebCore/
DChangeLog-2006-05-1029542 (WebCore::RenderTable::recalcSections): Shrink columns and columnPos to the
DChangeLog-2006-12-3146089 the last index in the columnPos vector.