Home
last modified time | relevance | path

Searched refs:computedValues (Results 1 – 14 of 14) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderBox.cpp2226 LogicalExtentComputedValues computedValues; in updateLogicalWidth() local
2227 computeLogicalWidthInRegion(computedValues); in updateLogicalWidth()
2229 setLogicalWidth(computedValues.m_extent); in updateLogicalWidth()
2230 setLogicalLeft(computedValues.m_position); in updateLogicalWidth()
2231 setMarginStart(computedValues.m_margins.m_start); in updateLogicalWidth()
2232 setMarginEnd(computedValues.m_margins.m_end); in updateLogicalWidth()
2267 void RenderBox::computeLogicalWidthInRegion(LogicalExtentComputedValues& computedValues, RenderRegi… in computeLogicalWidthInRegion() argument
2269 computedValues.m_extent = logicalWidth(); in computeLogicalWidthInRegion()
2270 computedValues.m_position = logicalLeft(); in computeLogicalWidthInRegion()
2271 computedValues.m_margins.m_start = marginStart(); in computeLogicalWidthInRegion()
[all …]
DRenderMeter.cpp62 …LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const in computeLogicalHeight()
64 RenderBox::computeLogicalHeight(logicalHeight, logicalTop, computedValues); in computeLogicalHeight()
68 frame.setHeight(computedValues.m_extent); in computeLogicalHeight()
70 frame.setWidth(computedValues.m_extent); in computeLogicalHeight()
72 computedValues.m_extent = isHorizontalWritingMode() ? frameSize.height() : frameSize.width(); in computeLogicalHeight()
DRenderMultiColumnFlowThread.cpp55 …LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const in computeLogicalHeight()
58 computedValues.m_extent = logicalHeight; in computeLogicalHeight()
59 computedValues.m_position = logicalTop; in computeLogicalHeight()
DRenderImage.cpp234 LogicalExtentComputedValues computedValues; in imageDimensionsChanged() local
235 computeLogicalWidthInRegion(computedValues); in imageDimensionsChanged()
236 LayoutUnit newWidth = computedValues.m_extent; in imageDimensionsChanged()
237 computeLogicalHeight(height(), 0, computedValues); in imageDimensionsChanged()
238 LayoutUnit newHeight = computedValues.m_extent; in imageDimensionsChanged()
DRenderTextControl.cpp129 …LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const in computeLogicalHeight()
143 RenderBox::computeLogicalHeight(logicalHeight, logicalTop, computedValues); in computeLogicalHeight()
DRenderMultiColumnSet.cpp192 …LogicalHeight(LayoutUnit, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const in computeLogicalHeight()
194 computedValues.m_extent = m_computedColumnHeight; in computeLogicalHeight()
195 computedValues.m_position = logicalTop; in computeLogicalHeight()
DRenderTable.cpp247 LogicalExtentComputedValues computedValues; in updateLogicalWidth() local
248 computePositionedLogicalWidth(computedValues); in updateLogicalWidth()
249 setLogicalWidth(computedValues.m_extent); in updateLogicalWidth()
250 setLogicalLeft(computedValues.m_position); in updateLogicalWidth()
251 setMarginStart(computedValues.m_margins.m_start); in updateLogicalWidth()
252 setMarginEnd(computedValues.m_margins.m_end); in updateLogicalWidth()
DRenderFlowThread.cpp247 …LogicalHeight(LayoutUnit, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const in computeLogicalHeight()
249 computedValues.m_position = logicalTop; in computeLogicalHeight()
250 computedValues.m_extent = 0; in computeLogicalHeight()
256 computedValues.m_extent += region->logicalHeightOfAllFlowThreadContent(); in computeLogicalHeight()
DRenderFlexibleBox.cpp420 LogicalExtentComputedValues computedValues; in mainAxisContentExtent() local
424 computeLogicalHeight(borderBoxLogicalHeight, logicalTop(), computedValues); in mainAxisContentExtent()
425 if (computedValues.m_extent == LayoutUnit::max()) in mainAxisContentExtent()
426 return computedValues.m_extent; in mainAxisContentExtent()
427 return std::max(LayoutUnit(0), computedValues.m_extent - borderPaddingAndScrollbar); in mainAxisContentExtent()
DRenderListBox.cpp261 …LogicalHeight(LayoutUnit, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const in computeLogicalHeight()
264 RenderBox::computeLogicalHeight(height, logicalTop, computedValues); in computeLogicalHeight()
DRenderView.cpp98 …icalHeight(LayoutUnit logicalHeight, LayoutUnit, LogicalExtentComputedValues& computedValues) const in computeLogicalHeight()
100computedValues.m_extent = (!shouldUsePrintingLayout() && m_frameView) ? LayoutUnit(viewLogicalHeig… in computeLogicalHeight()
DRenderBlock.cpp4190 LogicalExtentComputedValues computedValues; in computeInlinePreferredLogicalWidths() local
4191 … childBox->computeLogicalHeight(childBox->borderAndPaddingLogicalHeight(), 0, computedValues); in computeInlinePreferredLogicalWidths()
4192 … childMinPreferredLogicalWidth = childMaxPreferredLogicalWidth = computedValues.m_extent; in computeInlinePreferredLogicalWidths()
4433 LogicalExtentComputedValues computedValues; in computeBlockPreferredLogicalWidths() local
4434 … childBox->computeLogicalHeight(childBox->borderAndPaddingLogicalHeight(), 0, computedValues); in computeBlockPreferredLogicalWidths()
4435 childMinPreferredLogicalWidth = childMaxPreferredLogicalWidth = computedValues.m_extent; in computeBlockPreferredLogicalWidths()
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
DRenderSVGForeignObject.cpp112 …LogicalHeight(LayoutUnit, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const in computeLogicalHeight()
117 computedValues.m_extent = static_cast<int>(roundf(m_viewport.height())); in computeLogicalHeight()
118 computedValues.m_position = logicalTop; in computeLogicalHeight()
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
DSliderThumbElement.cpp116 …LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const in computeLogicalHeight()
134 RenderBox::computeLogicalHeight(trackHeight, logicalTop, computedValues); in computeLogicalHeight()
139 RenderBox::computeLogicalHeight(logicalHeight, logicalTop, computedValues); in computeLogicalHeight()