HomeSort by relevance Sort by last modified time
    Searched refs:logicalHeight (Results 1 - 25 of 83) sorted by null

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderSearchField.cpp 65 lineHeight = max(lineHeight, decorationRenderer->logicalHeight());
71 lineHeight = max(lineHeight, cancelRenderer->logicalHeight());
79 return logicalHeight();
87 if (containerRenderer->logicalHeight() <= contentLogicalHeight())
92 LayoutUnit logicalHeightDiff = containerRenderer->logicalHeight() - contentLogicalHeight();
RenderMeter.h 41 virtual void computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues&) const OVERRIDE;
RenderMultiColumnFlowThread.h 44 virtual void computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues&) const OVERRIDE;
RenderNamedFlowFragment.cpp 90 bool hasAutoHeightStyle = styleToUse->logicalHeight().isAuto()
91 || styleToUse->logicalHeight().isFitContent()
92 || styleToUse->logicalHeight().isMaxContent()
93 || styleToUse->logicalHeight().isMinContent();
RenderBlock.h 157 LayoutUnit availableLogicalWidthForLineInRegion(LayoutUnit position, bool shouldIndentText, RenderRegion* region, LayoutUnit logicalHeight = 0) const
159 return max<LayoutUnit>(0, logicalRightOffsetForLineInRegion(position, shouldIndentText, region, logicalHeight)
160 - logicalLeftOffsetForLineInRegion(position, shouldIndentText, region, logicalHeight));
162 LayoutUnit logicalRightOffsetForLineInRegion(LayoutUnit position, bool shouldIndentText, RenderRegion* region, LayoutUnit logicalHeight = 0) const
164 return logicalRightOffsetForLine(position, logicalRightOffsetForContent(region), shouldIndentText, logicalHeight);
166 LayoutUnit logicalLeftOffsetForLineInRegion(LayoutUnit position, bool shouldIndentText, RenderRegion* region, LayoutUnit logicalHeight = 0) const
168 return logicalLeftOffsetForLine(position, logicalLeftOffsetForContent(region), shouldIndentText, logicalHeight);
170 LayoutUnit startOffsetForLineInRegion(LayoutUnit position, bool shouldIndentText, RenderRegion* region, LayoutUnit logicalHeight = 0) const
172 return style()->isLeftToRightDirection() ? logicalLeftOffsetForLineInRegion(position, shouldIndentText, region, logicalHeight)
173 : logicalWidth() - logicalRightOffsetForLineInRegion(position, shouldIndentText, region, logicalHeight);
    [all...]
LineWidth.cpp 56 LayoutUnit height = m_block.logicalHeight();
57 LayoutUnit logicalHeight = m_block.minLineHeightForReplacedRenderer(m_isFirstLine, replacedHeight);
58 m_left = m_block.logicalLeftOffsetForLine(height, shouldIndentText(), logicalHeight);
59 m_right = m_block.logicalRightOffsetForLine(height, shouldIndentText(), logicalHeight);
71 LayoutUnit height = m_block.logicalHeight();
90 previousShapeOutsideInfo->updateDeltasForContainingBlockLine(&m_block, previousFloat, m_block.logicalHeight(), lineHeight);
97 shapeOutsideInfo->updateDeltasForContainingBlockLine(&m_block, newFloat, m_block.logicalHeight(), lineHeight);
150 LayoutUnit lastFloatLogicalBottom = m_block.logicalHeight();
RenderMeter.cpp 62 void RenderMeter::computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const
64 RenderBox::computeLogicalHeight(logicalHeight, logicalTop, computedValues);
RenderMultiColumnFlowThread.cpp 55 void RenderMultiColumnFlowThread::computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const
58 computedValues.m_extent = logicalHeight;
RenderTableSection.cpp 56 row.logicalHeight = row.rowRenderer->style()->logicalHeight();
65 Length logicalHeight = cell->style()->logicalHeight();
66 if (logicalHeight.isPositive()) {
67 Length cRowLogicalHeight = row.logicalHeight;
68 switch (logicalHeight.type()) {
71 || (cRowLogicalHeight.isPercent() && cRowLogicalHeight.percent() < logicalHeight.percent()))
72 row.logicalHeight = logicalHeight;
    [all...]
RenderTextControlSingleLine.cpp 93 return containerElement() ? contentLogicalHeight() : logicalHeight();
116 if (innerTextRenderer && !innerTextRenderer->style()->logicalHeight().isAuto()) {
120 if (viewPortRenderer && !viewPortRenderer->style()->logicalHeight().isAuto()) {
133 if (innerTextRenderer && innerTextRenderer->logicalHeight() > logicalHeightLimit) {
134 if (desiredLogicalHeight != innerTextRenderer->logicalHeight())
149 LayoutUnit containerLogicalHeight = containerRenderer->logicalHeight();
153 } else if (containerRenderer->logicalHeight() < contentLogicalHeight()) {
166 LayoutUnit logicalHeightDiff = innerTextRenderer->logicalHeight() - contentLogicalHeight();
178 innerSpinBox->setLogicalHeight(logicalHeight() - borderBefore() - borderAfter());
RenderTextControl.cpp 101 return logicalHeight() - borderAndPaddingLogicalHeight();
129 void RenderTextControl::computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const
135 logicalHeight = computeControlLogicalHeight(innerTextBox->lineHeight(true, HorizontalLine, PositionOfInteriorLineBoxes), nonContentHeight) + borderAndPaddingHeight();
140 logicalHeight += scrollbarThickness();
143 RenderBox::computeLogicalHeight(logicalHeight, logicalTop, computedValues);
RenderBlockFlow.cpp 257 LayoutUnit previousHeight = logicalHeight();
316 if (lowestFloatLogicalBottom() > (logicalHeight() - toAdd) && expandsToEncloseOverhangingFloats())
325 LayoutUnit oldHeight = logicalHeight();
334 LayoutUnit newHeight = logicalHeight();
503 setLogicalHeight(logicalHeight() + logicalHeightForChild(child));
505 setLogicalHeight(logicalHeight() + marginAfterForChild(child));
533 LayoutUnit newHeight = applyAfterBreak(child, logicalHeight(), marginInfo);
579 LayoutUnit spaceShortage = child->logicalHeight() - remainingLogicalHeight;
619 setLogicalHeight(logicalHeight() + (result - oldTop));
    [all...]
InlineBox.h 200 float width() const { return isHorizontal() ? logicalWidth() : hasVirtualLogicalHeight() ? virtualLogicalHeight() : logicalHeight(); }
201 float height() const { return isHorizontal() ? hasVirtualLogicalHeight() ? virtualLogicalHeight() : logicalHeight() : logicalWidth(); }
223 float logicalBottom() const { return logicalTop() + logicalHeight(); }
237 float logicalHeight() const;
239 FloatRect logicalFrameRect() const { return isHorizontal() ? FloatRect(m_topLeft.x(), m_topLeft.y(), m_logicalWidth, logicalHeight()) : FloatRect(m_topLeft.y(), m_topLeft.x(), m_logicalWidth, logicalHeight()); }
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
BoxShape.h 49 virtual void getExcludedIntervals(LayoutUnit logicalTop, LayoutUnit logicalHeight, SegmentList&) const OVERRIDE;
50 virtual void getIncludedIntervals(LayoutUnit logicalTop, LayoutUnit logicalHeight, SegmentList&) const OVERRIDE;
RectangleShape.h 54 virtual void getExcludedIntervals(LayoutUnit logicalTop, LayoutUnit logicalHeight, SegmentList&) const OVERRIDE;
55 virtual void getIncludedIntervals(LayoutUnit logicalTop, LayoutUnit logicalHeight, SegmentList&) const OVERRIDE;
BoxShape.cpp 73 void BoxShape::getExcludedIntervals(LayoutUnit logicalTop, LayoutUnit logicalHeight, SegmentList& result) const
76 if (marginBounds.isEmpty() || !lineOverlapsShapeMarginBounds(logicalTop, logicalHeight))
80 float y2 = logicalTop + logicalHeight;
107 void BoxShape::getIncludedIntervals(LayoutUnit logicalTop, LayoutUnit logicalHeight, SegmentList& result) const
114 if (logicalTop < rect.y() || logicalTop + logicalHeight > rect.maxY())
ShapeInfo.h 71 void setShapeSize(LayoutUnit logicalWidth, LayoutUnit logicalHeight)
76 logicalHeight += m_renderer->marginLogicalHeight();
82 logicalHeight -= m_renderer->borderLogicalHeight();
86 logicalHeight -= m_renderer->borderAndPaddingLogicalHeight();
91 logicalHeight -= m_renderer->borderAndPaddingLogicalHeight();
95 LayoutSize newLogicalSize(logicalWidth, logicalHeight);
Shape.h 72 virtual void getIncludedIntervals(LayoutUnit logicalTop, LayoutUnit logicalHeight, SegmentList&) const = 0;
73 virtual void getExcludedIntervals(LayoutUnit logicalTop, LayoutUnit logicalHeight, SegmentList&) const = 0;
PolygonShape.h 96 virtual void getExcludedIntervals(LayoutUnit logicalTop, LayoutUnit logicalHeight, SegmentList&) const OVERRIDE;
97 virtual void getIncludedIntervals(LayoutUnit logicalTop, LayoutUnit logicalHeight, SegmentList&) const OVERRIDE;
RasterShape.h 100 virtual void getExcludedIntervals(LayoutUnit logicalTop, LayoutUnit logicalHeight, SegmentList&) const OVERRIDE;
101 virtual void getIncludedIntervals(LayoutUnit logicalTop, LayoutUnit logicalHeight, SegmentList&) const OVERRIDE;
RectangleShape.cpp 76 void RectangleShape::getExcludedIntervals(LayoutUnit logicalTop, LayoutUnit logicalHeight, SegmentList& result) const
83 float y2 = logicalTop + logicalHeight;
111 void RectangleShape::getIncludedIntervals(LayoutUnit logicalTop, LayoutUnit logicalHeight, SegmentList& result) const
118 float y2 = logicalTop + logicalHeight;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/line/
LineInfo.h 57 block->setLogicalHeight(block->logicalHeight() + floatPaginationStrut());
  /frameworks/base/core/java/android/view/
DisplayInfo.java 111 public int logicalHeight;
241 && logicalHeight == other.logicalHeight
273 logicalHeight = other.logicalHeight;
300 logicalHeight = source.readInt();
328 dest.writeInt(logicalHeight);
362 getMetricsWithSize(outMetrics, compatInfo, token, logicalWidth, logicalHeight);
367 logicalWidth : logicalHeight;
372 logicalHeight : logicalWidth
    [all...]
  /frameworks/base/services/java/com/android/server/display/
LogicalDisplay.java 209 mBaseDisplayInfo.logicalHeight = deviceInfo.height;
255 mTempLayerStackRect.set(0, 0, displayInfo.logicalWidth, displayInfo.logicalHeight);
281 // or physHeight / displayInfo.logicalHeight => pillar box
287 if (physWidth * displayInfo.logicalHeight
291 displayRectHeight = displayInfo.logicalHeight * physWidth / displayInfo.logicalWidth;
294 displayRectWidth = displayInfo.logicalWidth * physHeight / displayInfo.logicalHeight;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGForeignObject.h 59 virtual void computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues&) const OVERRIDE;

Completed in 86 milliseconds

1 2 3 4