Searched refs:colLogicalWidth (Results 1 – 3 of 3) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderMultiColumnSet.cpp | 224 LayoutUnit colLogicalWidth = computedColumnWidth(); in columnRectAt() local 230 colLogicalLeft += index * (colLogicalWidth + colGap); in columnRectAt() 232 … colLogicalLeft += contentLogicalWidth() - colLogicalWidth - index * (colLogicalWidth + colGap); in columnRectAt() 235 return LayoutRect(colLogicalLeft, colLogicalTop, colLogicalWidth, colLogicalHeight); in columnRectAt() 236 return LayoutRect(colLogicalTop, colLogicalLeft, colLogicalHeight, colLogicalWidth); in columnRectAt() 454 LayoutUnit colLogicalWidth = computedColumnWidth(); in collectLayerFragments() local 474 LayoutUnit inlineOffset = i * (colLogicalWidth + colGap); in collectLayerFragments()
|
D | AutoTableLayout.cpp | 154 Length colLogicalWidth = column->style()->logicalWidth(); in fullRecalc() local 155 if (colLogicalWidth.isAuto()) in fullRecalc() 156 colLogicalWidth = groupLogicalWidth; in fullRecalc() 157 … if ((colLogicalWidth.isFixed() || colLogicalWidth.isPercent()) && colLogicalWidth.isZero()) in fullRecalc() 158 colLogicalWidth = Length(); in fullRecalc() 161 …if (!colLogicalWidth.isAuto() && span == 1 && effCol < nEffCols && m_table->spanOfEffCol(effCol) =… in fullRecalc() 162 m_layoutStruct[effCol].logicalWidth = colLogicalWidth; in fullRecalc() 163 … if (colLogicalWidth.isFixed() && m_layoutStruct[effCol].maxLogicalWidth < colLogicalWidth.value()) in fullRecalc() 164 m_layoutStruct[effCol].maxLogicalWidth = colLogicalWidth.value(); in fullRecalc()
|
D | RenderBlock.cpp | 3621 LayoutUnit colLogicalWidth = colInfo->desiredColumnWidth(); in columnRectAt() local 3628 colLogicalLeft += index * (colLogicalWidth + colGap); in columnRectAt() 3630 … colLogicalLeft += contentLogicalWidth() - colLogicalWidth - index * (colLogicalWidth + colGap); in columnRectAt() 3639 return LayoutRect(colLogicalLeft, colLogicalTop, colLogicalWidth, colLogicalHeight); in columnRectAt() 3640 return LayoutRect(colLogicalTop, colLogicalLeft, colLogicalHeight, colLogicalWidth); in columnRectAt() 3838 LayoutUnit colLogicalWidth = colInfo->desiredColumnWidth(); in adjustForColumns() local 3843 …ogicalLeft, borderBefore() + paddingBefore() + i * colLogicalHeight, colLogicalWidth, colLogicalHe… in adjustForColumns()
|