Searched defs:logicalHeight (Results 1 - 25 of 28) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderMeter.cpp62 void RenderMeter::computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const argument
64 RenderBox::computeLogicalHeight(logicalHeight, logicalTop, computedValues);
H A DRenderMultiColumnFlowThread.cpp55 void RenderMultiColumnFlowThread::computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const argument
58 computedValues.m_extent = logicalHeight;
H A DLineWidth.cpp56 LayoutUnit height = m_block.logicalHeight();
57 LayoutUnit logicalHeight = m_block.minLineHeightForReplacedRenderer(m_isFirstLine, replacedHeight); local
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();
H A DRenderTextControl.cpp101 return logicalHeight() - borderAndPaddingLogicalHeight();
129 void RenderTextControl::computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const argument
135 logicalHeight = computeControlLogicalHeight(innerTextBox->lineHeight(true, HorizontalLine, PositionOfInteriorLineBoxes), nonContentHeight) + borderAndPaddingHeight();
140 logicalHeight += scrollbarThickness();
143 RenderBox::computeLogicalHeight(logicalHeight, logicalTop, computedValues);
H A DInlineBox.cpp119 float InlineBox::logicalHeight() const function in class:WebCore::InlineBox
H A DRenderTableSection.h122 Length logicalHeight; member in struct:WebCore::FINAL::RowStruct
H A DFloatingObjects.cpp415 LayoutUnit FloatingObjects::logicalLeftOffset(LayoutUnit fixedOffset, LayoutUnit logicalTop, LayoutUnit logicalHeight) argument
417 ComputeFloatOffsetAdapter<FloatingObject::FloatLeft> adapter(m_renderer, roundToInt(logicalTop), roundToInt(logicalTop + logicalHeight), fixedOffset);
423 LayoutUnit FloatingObjects::logicalRightOffset(LayoutUnit fixedOffset, LayoutUnit logicalTop, LayoutUnit logicalHeight) argument
425 ComputeFloatOffsetAdapter<FloatingObject::FloatRight> adapter(m_renderer, roundToInt(logicalTop), roundToInt(logicalTop + logicalHeight), fixedOffset);
H A DRenderBlockFlow.h102 void setLogicalHeightForFloat(FloatingObject* floatingObject, LayoutUnit logicalHeight) argument
105 floatingObject->setHeight(logicalHeight);
107 floatingObject->setWidth(logicalHeight);
218 bool hasOverhangingFloats() { return parent() && !hasColumns() && containsFloats() && lowestFloatLogicalBottom() > logicalHeight(); }
235 virtual LayoutUnit logicalRightFloatOffsetForLine(LayoutUnit logicalTop, LayoutUnit fixedOffset, LayoutUnit logicalHeight) const OVERRIDE;
236 virtual LayoutUnit logicalLeftFloatOffsetForLine(LayoutUnit logicalTop, LayoutUnit fixedOffset, LayoutUnit logicalHeight) const OVERRIDE;
H A DRenderRegion.cpp264 bool hasAutoHeightStyle = style()->logicalHeight().isAuto() || style()->logicalHeight().isFitContent()
265 || style()->logicalHeight().isMaxContent() || style()->logicalHeight().isMinContent();
660 if (newLogicalHeight > logicalHeight()) { function
H A DRenderReplaced.cpp247 if (style()->logicalHeight().isAuto())
250 if (style()->logicalHeight().isSpecified()) {
256 if (style()->logicalHeight().isIntrinsic())
320 if (intrinsicRatio && !isPercentageIntrinsicSize && !intrinsicSize.isEmpty() && style()->logicalWidth().isAuto() && style()->logicalHeight().isAuto()) {
396 bool heightIsAuto = style()->logicalHeight().isAuto();
409 LayoutUnit logicalHeight = computeReplacedLogicalHeight(); local
410 return computeReplacedLogicalWidthRespectingMinMaxWidth(roundToInt(round(logicalHeight * intrinsicRatio)), shouldComputePreferred);
453 return computeReplacedLogicalHeightRespectingMinMaxHeight(computeReplacedLogicalHeightUsing(style()->logicalHeight()));
H A DRenderBox.h86 LayoutUnit logicalBottom() const { return logicalTop() + logicalHeight(); }
88 LayoutUnit logicalHeight() const { return style()->isHorizontalWritingMode() ? height() : width(); } function in class:WebCore::RenderBox
91 LayoutUnit constrainLogicalHeightByMinMax(LayoutUnit logicalHeight, LayoutUnit intrinsicContentHeight) const;
92 LayoutUnit constrainContentBoxLogicalHeightByMinMax(LayoutUnit logicalHeight, LayoutUnit intrinsicContentHeight) const;
406 virtual void computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues&) const;
413 return document().inQuirksMode() && style()->logicalHeight().isAuto() && !isFloatingOrOutOfFlowPositioned() && (isRoot() || isBody()) && !document().shouldDisplaySeamlesslyWithParent() && !isInline();
433 LayoutUnit computeReplacedLogicalHeightRespectingMinMaxHeight(LayoutUnit logicalHeight) const;
671 LayoutUnit containerLogicalHeight, LayoutUnit bordersPlusPadding, LayoutUnit logicalHeight,
704 // updateLogicalHeight. This is logicalHeight() before it is clamped to
H A DRenderFlowThread.cpp715 RenderRegion* endRegion = regionAtBlockOffset(offsetFromLogicalTopOfFirstPage + box->logicalHeight(), true);
890 LayoutUnit logicalHeight = 0; local
903 LayoutUnit regionLogicalHeight = std::min<LayoutUnit>(RenderFlowThread::maxLogicalHeight() - logicalHeight, region->logicalHeightOfAllFlowThreadContent());
905 LayoutRect regionRect(style()->direction() == LTR ? LayoutUnit() : logicalWidth() - regionLogicalWidth, logicalHeight, regionLogicalWidth, regionLogicalHeight);
909 m_regionIntervalTree.add(RegionIntervalTree::createInterval(logicalHeight, logicalHeight + regionLogicalHeight, region));
911 logicalHeight += regionLogicalHeight;
970 // Compute the region height pretending that the offsetBreakInCurrentRegion is the logicalHeight for the auto-height region.
H A DRenderInline.cpp565 int logicalHeight = container->style(rootBox->isFirstLineStyle())->font().fontMetrics().height(); local
567 yield(FloatRect(currBox->inlineBoxWrapper()->x() - currBox->marginLeft(), logicalTop, currBox->width() + currBox->marginWidth(), logicalHeight));
569 yield(FloatRect(logicalTop, currBox->inlineBoxWrapper()->y() - currBox->marginTop(), logicalHeight, currBox->height() + currBox->marginHeight()));
580 int logicalHeight = container->style(rootBox->isFirstLineStyle())->font().fontMetrics().height(); local
585 logicalHeight));
589 logicalHeight,
598 int logicalHeight = container->style(rootBox->isFirstLineStyle())->font().fontMetrics().height(); local
600 yield(FloatRect(childText->x(), logicalTop, childText->logicalWidth(), logicalHeight));
602 yield(FloatRect(logicalTop, childText->y(), logicalHeight, childText->logicalWidth()));
992 LayoutUnit logicalHeight local
[all...]
H A DRenderView.cpp98 void RenderView::computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit, LogicalExtentComputedValues& computedValues) const argument
100 computedValues.m_extent = (!shouldUsePrintingLayout() && m_frameView) ? LayoutUnit(viewLogicalHeight()) : logicalHeight;
321 || child->style()->logicalHeight().isPercent()
324 || child->style()->logicalHeight().isViewportPercentage()
H A DInlineFlowBox.cpp641 LayoutUnit boxHeight = curr->logicalHeight();
676 LayoutUnit bottomRubyBaseLeading = (curr->logicalHeight() - rubyBase->logicalBottom()) + rubyBase->logicalHeight() - (rubyBase->lastRootBox() ? rubyBase->lastRootBox()->lineBottom() : LayoutUnit());
751 setLogicalTop(lineBottom - (logicalTop() - lineTop) - logicalHeight());
760 curr->setLogicalTop(lineBottom - (curr->logicalTop() - lineTop) - curr->logicalHeight());
1045 LayoutUnit& logicalHeight = isHorizontal() ? height : width; local
1046 LayoutUnit bottom = min(rootBox->lineBottom(), top + logicalHeight);
1048 logicalHeight = bottom - top;
1213 LayoutUnit logicalHeight = isHorizontal() ? rect.height() : rect.width(); local
1214 LayoutUnit bottom = min(rootBox->lineBottom(), logicalTop + logicalHeight);
[all...]
H A DRenderText.cpp1537 LayoutUnit logicalHeight = lastTextBox()->logicalBottomVisualOverflow() - logicalTop; local
1539 LayoutRect rect(logicalLeftSide, logicalTop, logicalWidth, logicalHeight);
H A DRenderBlockFlow.cpp257 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));
849 && (blockStyle->logicalHeight()
2370 nextFloatLogicalBottomBelow(LayoutUnit logicalHeight, ShapeOutsideFloatOffsetMode offsetMode) const argument
[all...]
H A DRenderBlockLineLayout.cpp620 lineLogicalLeft = block->logicalLeftOffsetForLine(block->logicalHeight(), shouldIndentText == IndentText, lineLogicalHeight);
623 lineLogicalRight = block->pixelSnappedLogicalRightOffsetForLine(block->logicalHeight(), shouldIndentText == IndentText, lineLogicalHeight);
676 updateLogicalInlinePositions(this, lineLogicalLeft, lineLogicalRight, availableLogicalWidth, isFirstLine, shouldIndentText, renderBox->logicalHeight());
759 setLogicalHeight(lineBox->alignBoxesInBlockDirection(logicalHeight(), textBoxDataMap, verticalPositionCache));
770 r->m_box->setLogicalTop(logicalHeight());
1063 void setRepaintRange(LayoutUnit logicalHeight) argument
1066 m_repaintLogicalTop = m_repaintLogicalBottom = logicalHeight;
1187 layoutState.setRepaintRange(logicalHeight());
1222 // Before restarting the layout loop with a new logicalHeight, remove all floats that were added and reset the resolver.
1260 LayoutUnit newLogicalHeight = block->logicalHeight()
1409 LayoutUnit logicalHeight = shapeInsideInfo->shapeLogicalTop() - logicalOffsetFromShapeContainer.height(); local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
H A DBoxShape.cpp73 void BoxShape::getExcludedIntervals(LayoutUnit logicalTop, LayoutUnit logicalHeight, SegmentList& result) const argument
76 if (marginBounds.isEmpty() || !lineOverlapsShapeMarginBounds(logicalTop, logicalHeight))
80 float y2 = logicalTop + logicalHeight;
107 void BoxShape::getIncludedIntervals(LayoutUnit logicalTop, LayoutUnit logicalHeight, SegmentList& result) const argument
114 if (logicalTop < rect.y() || logicalTop + logicalHeight > rect.maxY())
H A DShapeInfo.h71 void setShapeSize(LayoutUnit logicalWidth, LayoutUnit logicalHeight) argument
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);
H A DRasterShape.cpp283 void RasterShape::getExcludedIntervals(LayoutUnit logicalTop, LayoutUnit logicalHeight, SegmentList& result) const argument
290 intervals.getExcludedIntervals(logicalTop, logicalTop + logicalHeight, excludedIntervals);
294 void RasterShape::getIncludedIntervals(LayoutUnit logicalTop, LayoutUnit logicalHeight, SegmentList& result) const argument
301 intervals.getIncludedIntervals(logicalTop, logicalTop + logicalHeight, includedIntervals);
H A DRectangleShape.cpp76 void RectangleShape::getExcludedIntervals(LayoutUnit logicalTop, LayoutUnit logicalHeight, SegmentList& result) const argument
83 float y2 = logicalTop + logicalHeight;
111 void RectangleShape::getIncludedIntervals(LayoutUnit logicalTop, LayoutUnit logicalHeight, SegmentList& result) const argument
118 float y2 = logicalTop + logicalHeight;
H A DPolygonShape.cpp366 void PolygonShape::getExcludedIntervals(LayoutUnit logicalTop, LayoutUnit logicalHeight, SegmentList& result) const argument
373 float y2 = logicalTop + logicalHeight;
394 void PolygonShape::getIncludedIntervals(LayoutUnit logicalTop, LayoutUnit logicalHeight, SegmentList& result) const argument
401 float y2 = logicalTop + logicalHeight;
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGPreserveAspectRatio.cpp278 AffineTransform SVGPreserveAspectRatio::getCTM(float logicalX, float logicalY, float logicalWidth, float logicalHeight, float physicalWidth, float physicalHeight) const argument
287 double extendedLogicalHeight = logicalHeight;
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DSliderThumbElement.cpp110 virtual void computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues&) const OVERRIDE;
116 void RenderSliderContainer::computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const argument
138 logicalHeight = RenderSlider::defaultTrackLength;
139 RenderBox::computeLogicalHeight(logicalHeight, logicalTop, computedValues);

Completed in 280 milliseconds

12