HomeSort by relevance Sort by last modified time
    Searched refs:computedValues (Results 1 - 15 of 15) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderMeter.cpp 62 void RenderMeter::computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const
64 RenderBox::computeLogicalHeight(logicalHeight, logicalTop, computedValues);
68 frame.setHeight(computedValues.m_extent);
70 frame.setWidth(computedValues.m_extent);
72 computedValues.m_extent = isHorizontalWritingMode() ? frameSize.height() : frameSize.width();
RenderMultiColumnFlowThread.cpp 55 void RenderMultiColumnFlowThread::computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const
58 computedValues.m_extent = logicalHeight;
59 computedValues.m_position = logicalTop;
RenderBox.cpp     [all...]
RenderLazyBlock.cpp 170 LogicalExtentComputedValues computedValues;
171 child->computeLogicalHeight(-1, height, computedValues);
172 child->setLogicalHeight(computedValues.m_extent);
173 heightOfChildren += computedValues.m_extent;
RenderTextControl.cpp 118 void RenderTextControl::computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const
132 RenderBox::computeLogicalHeight(logicalHeight, logicalTop, computedValues);
RenderImage.cpp 217 LogicalExtentComputedValues computedValues;
218 computeLogicalWidthInRegion(computedValues);
219 LayoutUnit newWidth = computedValues.m_extent;
220 computeLogicalHeight(height(), 0, computedValues);
221 LayoutUnit newHeight = computedValues.m_extent;
RenderMultiColumnSet.cpp 192 void RenderMultiColumnSet::computeLogicalHeight(LayoutUnit, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const
194 computedValues.m_extent = m_computedColumnHeight;
195 computedValues.m_position = logicalTop;
RenderTable.cpp 241 LogicalExtentComputedValues computedValues;
242 computePositionedLogicalWidth(computedValues);
243 setLogicalWidth(computedValues.m_extent);
244 setLogicalLeft(computedValues.m_position);
245 setMarginStart(computedValues.m_margins.m_start);
246 setMarginEnd(computedValues.m_margins.m_end);
    [all...]
RenderFlowThread.cpp 247 void RenderFlowThread::computeLogicalHeight(LayoutUnit, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const
249 computedValues.m_position = logicalTop;
250 computedValues.m_extent = 0;
256 computedValues.m_extent += region->logicalHeightOfAllFlowThreadContent();
    [all...]
RenderFlexibleBox.cpp 435 LogicalExtentComputedValues computedValues;
439 computeLogicalHeight(borderBoxLogicalHeight, logicalTop(), computedValues);
440 if (computedValues.m_extent == LayoutUnit::max())
441 return computedValues.m_extent;
442 return std::max(LayoutUnit(0), computedValues.m_extent - borderPaddingAndScrollbar);
    [all...]
RenderListBox.cpp 266 void RenderListBox::computeLogicalHeight(LayoutUnit, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const
269 RenderBox::computeLogicalHeight(height, logicalTop, computedValues);
RenderView.cpp 95 void RenderView::computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit, LogicalExtentComputedValues& computedValues) const
97 computedValues.m_extent = (!shouldUsePrintingLayout() && m_frameView) ? LayoutUnit(viewLogicalHeight()) : logicalHeight;
    [all...]
RenderBlock.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGForeignObject.cpp 111 void RenderSVGForeignObject::computeLogicalHeight(LayoutUnit, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const
116 computedValues.m_extent = static_cast<int>(roundf(m_viewport.height()));
117 computedValues.m_position = logicalTop;
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
SliderThumbElement.cpp 135 void RenderSliderContainer::computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const
153 RenderBox::computeLogicalHeight(trackHeight, logicalTop, computedValues);
158 RenderBox::computeLogicalHeight(logicalHeight, logicalTop, computedValues);

Completed in 127 milliseconds