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

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DAutoTableLayout.cpp156 Length colLogicalWidth = column->style()->logicalWidth(); local
157 if (colLogicalWidth.isAuto())
158 colLogicalWidth = groupLogicalWidth;
159 if ((colLogicalWidth.isFixed() || colLogicalWidth.isPercent()) && colLogicalWidth.isZero())
160 colLogicalWidth = Length();
163 if (!colLogicalWidth.isAuto() && span == 1 && effCol < nEffCols && m_table->spanOfEffCol(effCol) == 1) {
164 m_layoutStruct[effCol].logicalWidth = colLogicalWidth;
165 if (colLogicalWidth
[all...]
H A DRenderMultiColumnSet.cpp336 LayoutUnit colLogicalWidth = pageLogicalWidth(); local
344 colLogicalLeft += index * (colLogicalWidth + colGap);
346 colLogicalLeft += contentLogicalWidth() - colLogicalWidth - index * (colLogicalWidth + colGap);
352 return LayoutRect(colLogicalLeft, colLogicalTop, colLogicalWidth, colLogicalHeight);
353 return LayoutRect(colLogicalTop, colLogicalLeft, colLogicalHeight, colLogicalWidth);
504 LayoutUnit colLogicalWidth = pageLogicalWidth(); local
530 LayoutUnit inlineOffset = progressionIsInline ? i * (colLogicalWidth + colGap) : LayoutUnit();
H A DRenderBlock.cpp2915 LayoutUnit colLogicalWidth = colInfo->desiredColumnWidth(); local
2922 colLogicalLeft += index * (colLogicalWidth + colGap);
2924 colLogicalLeft += contentLogicalWidth() - colLogicalWidth - index * (colLogicalWidth + colGap);
2930 return LayoutRect(colLogicalLeft, colLogicalTop, colLogicalWidth, colLogicalHeight);
2931 return LayoutRect(colLogicalTop, colLogicalLeft, colLogicalHeight, colLogicalWidth);
3118 LayoutUnit colLogicalWidth = colInfo->desiredColumnWidth(); local
3123 LayoutRect sliceRect = LayoutRect(logicalLeft, borderBefore() + paddingBefore() + i * colLogicalHeight, colLogicalWidth, colLogicalHeight);

Completed in 1364 milliseconds