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

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderMeter.cpp60 void RenderMeter::computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const argument
62 RenderBox::computeLogicalHeight(logicalHeight, logicalTop, computedValues);
H A DRenderSliderContainer.cpp66 void RenderSliderContainer::computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const argument
91 logicalHeight = RenderSlider::defaultTrackLength;
94 updateIntrinsicContentLogicalHeight(logicalHeight);
96 RenderBox::computeLogicalHeight(logicalHeight, logicalTop, computedValues);
H A DRenderMultiColumnFlowThread.cpp259 void RenderMultiColumnFlowThread::computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const argument
262 computedValues.m_extent = logicalHeight;
H A DRenderTextControl.cpp100 return logicalHeight() - borderAndPaddingLogicalHeight();
128 void RenderTextControl::computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const argument
134 logicalHeight = computeControlLogicalHeight(innerEditorBox->lineHeight(true, HorizontalLine, PositionOfInteriorLineBoxes), nonContentHeight);
139 logicalHeight += scrollbarThickness();
143 updateIntrinsicContentLogicalHeight(logicalHeight);
145 logicalHeight += borderAndPaddingHeight();
148 RenderBox::computeLogicalHeight(logicalHeight, logicalTop, computedValues);
H A DInlineBox.cpp120 float InlineBox::logicalHeight() const function in class:blink::InlineBox
H A DRenderFlowThread.cpp220 LayoutUnit logicalHeight = 0; local
228 LayoutUnit columnSetLogicalHeight = std::min<LayoutUnit>(RenderFlowThread::maxLogicalHeight() - logicalHeight, columnSet->logicalHeightOfAllFlowThreadContent());
230 LayoutRect columnSetRect(style()->direction() == LTR ? LayoutUnit() : logicalWidth() - columnSetLogicalWidth, logicalHeight, columnSetLogicalWidth, columnSetLogicalHeight);
234 m_multiColumnSetIntervalTree.add(MultiColumnSetIntervalTree::createInterval(logicalHeight, logicalHeight + columnSetLogicalHeight, columnSet));
236 logicalHeight += columnSetLogicalHeight;
H A DRenderReplaced.cpp216 if (style()->logicalHeight().isAuto())
219 if (style()->logicalHeight().isSpecified()) {
225 if (style()->logicalHeight().isIntrinsic())
279 if (intrinsicRatio && !intrinsicSize.isEmpty() && style()->logicalWidth().isAuto() && style()->logicalHeight().isAuto()) {
364 LayoutUnit logicalHeight = computeReplacedLogicalHeight(); local
365 return computeReplacedLogicalWidthRespectingMinMaxWidth(roundToInt(round(logicalHeight * intrinsicRatio)), shouldComputePreferred);
404 return computeReplacedLogicalHeightRespectingMinMaxHeight(computeReplacedLogicalHeightUsing(style()->logicalHeight()));
H A DRenderTableSection.h132 Length logicalHeight; member in struct:blink::FINAL::RowStruct
H A DFloatingObjects.cpp396 LayoutUnit FloatingObjects::logicalLeftOffset(LayoutUnit fixedOffset, LayoutUnit logicalTop, LayoutUnit logicalHeight) argument
398 ComputeFloatOffsetForLineLayoutAdapter<FloatingObject::FloatLeft> adapter(m_renderer, roundToInt(logicalTop), roundToInt(logicalTop + logicalHeight), fixedOffset);
404 LayoutUnit FloatingObjects::logicalRightOffset(LayoutUnit fixedOffset, LayoutUnit logicalTop, LayoutUnit logicalHeight) argument
406 ComputeFloatOffsetForLineLayoutAdapter<FloatingObject::FloatRight> adapter(m_renderer, roundToInt(logicalTop), roundToInt(logicalTop + logicalHeight), fixedOffset);
H A DRenderBlockFlow.h67 LayoutUnit availableLogicalWidthForLine(LayoutUnit position, bool shouldIndentText, LayoutUnit logicalHeight = 0) const
69 return max<LayoutUnit>(0, logicalRightOffsetForLine(position, shouldIndentText, logicalHeight) - logicalLeftOffsetForLine(position, shouldIndentText, logicalHeight));
71 LayoutUnit logicalRightOffsetForLine(LayoutUnit position, bool shouldIndentText, LayoutUnit logicalHeight = 0) const
73 return logicalRightOffsetForLine(position, logicalRightOffsetForContent(), shouldIndentText, logicalHeight);
75 LayoutUnit logicalLeftOffsetForLine(LayoutUnit position, bool shouldIndentText, LayoutUnit logicalHeight = 0) const
77 return logicalLeftOffsetForLine(position, logicalLeftOffsetForContent(), shouldIndentText, logicalHeight);
79 LayoutUnit startOffsetForLine(LayoutUnit position, bool shouldIndentText, LayoutUnit logicalHeight = 0) const
81 return style()->isLeftToRightDirection() ? logicalLeftOffsetForLine(position, shouldIndentText, logicalHeight)
82 : logicalWidth() - logicalRightOffsetForLine(position, shouldIndentText, logicalHeight);
144 setLogicalHeightForFloat(FloatingObject* floatingObject, LayoutUnit logicalHeight) argument
[all...]
H A DRenderView.cpp117 void RenderView::computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit, LogicalExtentComputedValues& computedValues) const argument
119 computedValues.m_extent = (!shouldUsePrintingLayout() && m_frameView) ? LayoutUnit(viewLogicalHeight()) : logicalHeight;
209 || child->style()->logicalHeight().isPercent()
H A DInlineFlowBox.cpp653 LayoutUnit boxHeight = curr->logicalHeight();
689 LayoutUnit bottomRubyBaseLeading = (curr->logicalHeight() - rubyBase->logicalBottom()) + rubyBase->logicalHeight() - (rubyBase->lastRootBox() ? rubyBase->lastRootBox()->lineBottom() : LayoutUnit());
766 setLogicalTop(lineBottom - (logicalTop() - lineTop) - logicalHeight());
775 curr->setLogicalTop(lineBottom - (curr->logicalTop() - lineTop) - curr->logicalHeight());
1080 LayoutUnit& logicalHeight = isHorizontal() ? height : width; local
1081 LayoutUnit bottom = std::min(rootBox.lineBottom(), top + logicalHeight);
1083 logicalHeight = bottom - top;
1120 LayoutUnit logicalHeight = isHorizontal() ? rect.height() : rect.width(); local
1121 LayoutUnit bottom = std::min(rootBox.lineBottom(), logicalTop + logicalHeight);
[all...]
H A DRenderBox.h113 LayoutUnit logicalBottom() const { return logicalTop() + logicalHeight(); }
115 LayoutUnit logicalHeight() const { return style()->isHorizontalWritingMode() ? height() : width(); } function in class:blink::RenderBox
118 LayoutUnit constrainLogicalHeightByMinMax(LayoutUnit logicalHeight, LayoutUnit intrinsicContentHeight) const;
119 LayoutUnit constrainContentBoxLogicalHeightByMinMax(LayoutUnit logicalHeight, LayoutUnit intrinsicContentHeight) const;
423 virtual void computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues&) const;
429 return document().inQuirksMode() && style()->logicalHeight().isAuto() && !isFloatingOrOutOfFlowPositioned() && (isDocumentElement() || isBody()) && !isInline();
450 LayoutUnit computeReplacedLogicalHeightRespectingMinMaxHeight(LayoutUnit logicalHeight) const;
686 LayoutUnit containerLogicalHeight, LayoutUnit bordersPlusPadding, LayoutUnit logicalHeight,
723 // updateLogicalHeight. This is logicalHeight() before it is clamped to
H A DRenderInline.cpp594 int logicalHeight = container->style(rootBox.isFirstLineStyle())->font().fontMetrics().height(); local
596 yield(FloatRect(currBox->inlineBoxWrapper()->x() - currBox->marginLeft(), logicalTop, (currBox->width() + currBox->marginWidth()).toFloat(), logicalHeight));
598 yield(FloatRect(logicalTop, currBox->inlineBoxWrapper()->y() - currBox->marginTop(), logicalHeight, (currBox->height() + currBox->marginHeight()).toFloat()));
609 int logicalHeight = container->style(rootBox.isFirstLineStyle())->font().fontMetrics().height(); local
614 logicalHeight));
618 logicalHeight,
627 int logicalHeight = container->style(rootBox.isFirstLineStyle())->font().fontMetrics().height(); local
629 yield(FloatRect(childText->x(), logicalTop, childText->logicalWidth(), logicalHeight));
631 yield(FloatRect(logicalTop, childText->y(), logicalHeight, childText->logicalWidth()));
1025 LayoutUnit logicalHeight local
[all...]
H A DRenderText.cpp1575 LayoutUnit logicalHeight = lastTextBox()->logicalBottomVisualOverflow() - logicalTop; local
1577 LayoutRect rect(logicalLeftSide, logicalTop, logicalWidth, logicalHeight);
H A DRenderBlockFlow.cpp220 LayoutUnit oldLogicalHeight = logicalHeight();
428 LayoutUnit previousHeight = logicalHeight();
444 if (lowestFloatLogicalBottom() > (logicalHeight() - afterEdge) && createsBlockFormattingContext())
475 LayoutUnit oldHeight = logicalHeight();
479 LayoutUnit newHeight = logicalHeight();
665 setLogicalHeight(logicalHeight() + logicalHeightForChild(child));
667 setLogicalHeight(logicalHeight() + marginAfterForChild(child));
686 LayoutUnit newHeight = applyAfterBreak(child, logicalHeight(), marginInfo);
734 LayoutUnit childLogicalHeight = child->logicalHeight();
779 setLogicalHeight(logicalHeight()
2595 nextFloatLogicalBottomBelow(LayoutUnit logicalHeight, ShapeOutsideFloatOffsetMode offsetMode) const argument
[all...]
H A DRenderBlock.cpp1271 if (logicalHeight() > 0
1277 Length logicalHeightLength = style()->logicalHeight();
1282 if (cb->style()->logicalHeight().isFixed() || cb->isTableCell())
1921 lastLogicalTop = rootBlock->blockDirectionOffset(offsetFromRootBlock) + logicalHeight();
1922 lastLogicalLeft = logicalLeftSelectionOffset(rootBlock, logicalHeight());
1923 lastLogicalRight = logicalRightSelectionOffset(rootBlock, logicalHeight());
1935 logicalHeight(), paintInfo));
1983 result.uniteLeft(logicalLeftSelectionGap(rootBlock, rootBlockPhysicalPosition, offsetFromRootBlock, this, curr->logicalLeft(), curr->logicalTop(), curr->logicalHeight(), paintInfo));
1985 result.uniteRight(logicalRightSelectionGap(rootBlock, rootBlockPhysicalPosition, offsetFromRootBlock, this, curr->logicalRight(), curr->logicalTop(), curr->logicalHeight(), paintInfo));
2013 LayoutUnit logicalHeight local
2030 logicalLeftSelectionGap(const RenderBlock* rootBlock, const LayoutPoint& rootBlockPhysicalPosition, const LayoutSize& offsetFromRootBlock, const RenderObject* selObj, LayoutUnit logicalLeft, LayoutUnit logicalTop, LayoutUnit logicalHeight, const PaintInfo* paintInfo) const argument
2046 logicalRightSelectionGap(const RenderBlock* rootBlock, const LayoutPoint& rootBlockPhysicalPosition, const LayoutSize& offsetFromRootBlock, const RenderObject* selObj, LayoutUnit logicalRight, LayoutUnit logicalTop, LayoutUnit logicalHeight, const PaintInfo* paintInfo) const argument
[all...]
H A DRenderBox.cpp531 LayoutUnit RenderBox::constrainLogicalHeightByMinMax(LayoutUnit logicalHeight, LayoutUnit intrinsicContentHeight) const argument
537 logicalHeight = std::min(logicalHeight, maxH);
539 return std::max(logicalHeight, computeLogicalHeightUsing(styleToUse->logicalMinHeight(), intrinsicContentHeight));
542 LayoutUnit RenderBox::constrainContentBoxLogicalHeightByMinMax(LayoutUnit logicalHeight, LayoutUnit intrinsicContentHeight) const argument
548 logicalHeight = std::min(logicalHeight, maxH);
550 return std::max(logicalHeight, computeContentLogicalHeight(styleToUse->logicalMinHeight(), intrinsicContentHeight));
996 void RenderBox::setOverrideContainingBlockContentLogicalHeight(LayoutUnit logicalHeight) argument
1000 gOverrideContainingBlockLogicalHeightMap->set(this, logicalHeight);
2220 computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const argument
2317 LayoutUnit logicalHeight = computeContentAndScrollbarLogicalHeightUsing(height, intrinsicContentHeight); local
2535 Length logicalHeight = sizeType == MinSize ? style()->logicalMinHeight() : style()->logicalMaxHeight(); local
3200 LayoutUnit logicalHeight = computedValues.m_extent; local
3266 computePositionedLogicalHeightUsing(Length logicalHeightLength, const RenderBoxModelObject* containerBlock, LayoutUnit containerLogicalHeight, LayoutUnit bordersPlusPadding, LayoutUnit logicalHeight, const Length& logicalTop, const Length& logicalBottom, const Length& marginBefore, const Length& marginAfter, LogicalExtentComputedValues& computedValues) const argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/line/
H A DLineWidth.cpp55 LayoutUnit height = m_block.logicalHeight();
56 LayoutUnit logicalHeight = m_block.minLineHeightForReplacedRenderer(m_isFirstLine, replacedHeight); local
57 m_left = m_block.logicalLeftOffsetForLine(height, shouldIndentText(), logicalHeight).toFloat();
58 m_right = m_block.logicalRightOffsetForLine(height, shouldIndentText(), logicalHeight).toFloat();
65 LayoutUnit height = m_block.logicalHeight();
72 shapeDeltas = shapeOutsideInfo->computeDeltasForContainingBlockLine(m_block, *newFloat, m_block.logicalHeight(), lineHeight);
160 LayoutUnit lineLogicalTop = m_block.logicalHeight();
186 LayoutUnit lastFloatLogicalBottom = m_block.logicalHeight();
H A DLineLayoutState.h57 void setPaintInvalidationRange(LayoutUnit logicalHeight) argument
60 m_paintInvalidationLogicalTop = m_paintInvalidationLogicalBottom = logicalHeight;
/external/chromium_org/third_party/WebKit/Source/core/paint/
H A DInlineFlowBoxPainter.cpp333 LayoutUnit logicalHeight = m_inlineFlowBox.isHorizontal() ? rect.height() : rect.width(); local
334 LayoutUnit bottom = std::min(rootBox.lineBottom(), logicalTop + logicalHeight);
336 logicalHeight = bottom - logicalTop;
339 rect.setHeight(logicalHeight);
342 rect.setWidth(logicalHeight);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGPreserveAspectRatio.cpp293 AffineTransform SVGPreserveAspectRatio::getCTM(float logicalX, float logicalY, float logicalWidth, float logicalHeight, float physicalWidth, float physicalHeight) const argument
296 ASSERT(logicalHeight);
307 double extendedLogicalHeight = logicalHeight;
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DRenderStyle.h470 const Length& logicalHeight() const { return isHorizontalWritingMode() ? height() : width(); } function in class:blink::RenderStyle
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 924 milliseconds