/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderBox.cpp | 2226 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 …]
|
D | RenderMeter.cpp | 62 …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()
|
D | RenderMultiColumnFlowThread.cpp | 55 …LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const in computeLogicalHeight() 58 computedValues.m_extent = logicalHeight; in computeLogicalHeight() 59 computedValues.m_position = logicalTop; in computeLogicalHeight()
|
D | RenderImage.cpp | 234 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()
|
D | RenderTextControl.cpp | 129 …LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const in computeLogicalHeight() 143 RenderBox::computeLogicalHeight(logicalHeight, logicalTop, computedValues); in computeLogicalHeight()
|
D | RenderMultiColumnSet.cpp | 192 …LogicalHeight(LayoutUnit, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const in computeLogicalHeight() 194 computedValues.m_extent = m_computedColumnHeight; in computeLogicalHeight() 195 computedValues.m_position = logicalTop; in computeLogicalHeight()
|
D | RenderTable.cpp | 247 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()
|
D | RenderFlowThread.cpp | 247 …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()
|
D | RenderFlexibleBox.cpp | 420 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()
|
D | RenderListBox.cpp | 261 …LogicalHeight(LayoutUnit, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const in computeLogicalHeight() 264 RenderBox::computeLogicalHeight(height, logicalTop, computedValues); in computeLogicalHeight()
|
D | RenderView.cpp | 98 …icalHeight(LayoutUnit logicalHeight, LayoutUnit, LogicalExtentComputedValues& computedValues) const in computeLogicalHeight() 100 …computedValues.m_extent = (!shouldUsePrintingLayout() && m_frameView) ? LayoutUnit(viewLogicalHeig… in computeLogicalHeight()
|
D | RenderBlock.cpp | 4190 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/ |
D | RenderSVGForeignObject.cpp | 112 …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/ |
D | SliderThumbElement.cpp | 116 …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()
|