OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:computedValues
(Results
1 - 14
of
14
) 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
...]
RenderTextControl.cpp
129
void RenderTextControl::computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues&
computedValues
) const
143
RenderBox::computeLogicalHeight(logicalHeight, logicalTop,
computedValues
);
RenderImage.cpp
234
LogicalExtentComputedValues
computedValues
;
235
computeLogicalWidthInRegion(
computedValues
);
236
LayoutUnit newWidth =
computedValues
.m_extent;
237
computeLogicalHeight(height(), 0,
computedValues
);
238
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
247
LogicalExtentComputedValues
computedValues
;
248
computePositionedLogicalWidth(
computedValues
);
249
setLogicalWidth(
computedValues
.m_extent);
250
setLogicalLeft(
computedValues
.m_position);
251
setMarginStart(
computedValues
.m_margins.m_start);
252
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
420
LogicalExtentComputedValues
computedValues
;
424
computeLogicalHeight(borderBoxLogicalHeight, logicalTop(),
computedValues
);
425
if (
computedValues
.m_extent == LayoutUnit::max())
426
return
computedValues
.m_extent;
427
return std::max(LayoutUnit(0),
computedValues
.m_extent - borderPaddingAndScrollbar);
[
all
...]
RenderListBox.cpp
261
void RenderListBox::computeLogicalHeight(LayoutUnit, LayoutUnit logicalTop, LogicalExtentComputedValues&
computedValues
) const
264
RenderBox::computeLogicalHeight(height, logicalTop,
computedValues
);
RenderView.cpp
98
void RenderView::computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit, LogicalExtentComputedValues&
computedValues
) const
100
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
112
void RenderSVGForeignObject::computeLogicalHeight(LayoutUnit, LayoutUnit logicalTop, LogicalExtentComputedValues&
computedValues
) const
117
computedValues
.m_extent = static_cast<int>(roundf(m_viewport.height()));
118
computedValues
.m_position = logicalTop;
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
SliderThumbElement.cpp
116
void RenderSliderContainer::computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues&
computedValues
) const
134
RenderBox::computeLogicalHeight(trackHeight, logicalTop,
computedValues
);
139
RenderBox::computeLogicalHeight(logicalHeight, logicalTop,
computedValues
);
Completed in 151 milliseconds