Searched refs:colLogicalWidth (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/rendering/
H A DAutoTableLayout.cpp160 Length colLogicalWidth = col->style()->logicalWidth(); local
161 if (colLogicalWidth.isAuto())
162 colLogicalWidth = groupLogicalWidth;
163 if ((colLogicalWidth.isFixed() || colLogicalWidth.isPercent()) && colLogicalWidth.isZero())
164 colLogicalWidth = Length();
166 if (!colLogicalWidth.isAuto() && span == 1 && effCol < nEffCols && m_table->spanOfEffCol(effCol) == 1) {
167 m_layoutStruct[effCol].logicalWidth = colLogicalWidth;
168 if (colLogicalWidth
[all...]
H A DRenderBlock.cpp4394 int colLogicalWidth = colInfo->desiredColumnWidth(); local
4399 logicalLeftOffsetForContent() + (index * (colLogicalWidth + colGap))
4400 : logicalLeftOffsetForContent() + contentLogicalWidth() - colLogicalWidth - (index * (colLogicalWidth + colGap));
4401 IntRect rect(colLogicalLeft, colLogicalTop, colLogicalWidth, colLogicalHeight);
4403 return IntRect(colLogicalLeft, colLogicalTop, colLogicalWidth, colLogicalHeight);
4404 return IntRect(colLogicalTop, colLogicalLeft, colLogicalHeight, colLogicalWidth);
4592 int colLogicalWidth = colInfo->desiredColumnWidth(); local
4597 IntRect sliceRect = IntRect(logicalLeft, borderBefore() + paddingBefore() + i * colLogicalHeight, colLogicalWidth, colLogicalHeight);

Completed in 71 milliseconds