HomeSort by relevance Sort by last modified time
    Searched defs:logicalHeight (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
InlineBox.cpp 123 float InlineBox::logicalHeight() const
RenderReplaced.cpp 236 if (style()->logicalHeight().isAuto())
239 if (style()->logicalHeight().isSpecified()) {
245 if (style()->logicalHeight().isIntrinsic())
306 if (intrinsicRatio && !isPercentageIntrinsicSize && !intrinsicSize.isEmpty() && style()->logicalWidth().isAuto() && style()->logicalHeight().isAuto()) {
342 bool heightIsAuto = style()->logicalHeight().isAuto();
355 LayoutUnit logicalHeight = computeReplacedLogicalHeight();
356 return computeReplacedLogicalWidthRespectingMinMaxWidth(roundToInt(round(logicalHeight * intrinsicRatio)), shouldComputePreferred);
399 return computeReplacedLogicalHeightRespectingMinMaxHeight(computeReplacedLogicalHeightUsing(style()->logicalHeight()));
RenderTableSection.h 122 Length logicalHeight;
RenderFlowThread.cpp 684 RenderRegion* endRegion = regionAtBlockOffset(offsetFromLogicalTopOfFirstPage + box->logicalHeight(), true);
    [all...]
InlineFlowBox.cpp 641 LayoutUnit boxHeight = curr->logicalHeight();
676 LayoutUnit bottomRubyBaseLeading = (curr->logicalHeight() - rubyBase->logicalBottom()) + rubyBase->logicalHeight() - (rubyBase->lastRootBox() ? rubyBase->lastRootBox()->lineBottom() : LayoutUnit());
    [all...]
RenderBox.h 81 LayoutUnit logicalBottom() const { return logicalTop() + logicalHeight(); }
83 LayoutUnit logicalHeight() const { return style()->isHorizontalWritingMode() ? height() : width(); }
86 LayoutUnit constrainLogicalHeightByMinMax(LayoutUnit logicalHeight, LayoutUnit intrinsicContentHeight) const;
87 LayoutUnit constrainContentBoxLogicalHeightByMinMax(LayoutUnit logicalHeight, LayoutUnit intrinsicContentHeight) const;
403 virtual void computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues&) const;
410 return document()->inQuirksMode() && style()->logicalHeight().isAuto() && !isFloatingOrOutOfFlowPositioned() && (isRoot() || isBody()) && !document()->shouldDisplaySeamlesslyWithParent() && !isInline();
430 LayoutUnit computeReplacedLogicalHeightRespectingMinMaxHeight(LayoutUnit logicalHeight) const;
    [all...]
RenderInline.cpp 563 int logicalHeight = container->style(rootBox->isFirstLineStyle())->font().fontMetrics().height();
565 yield(FloatRect(currBox->inlineBoxWrapper()->x() - currBox->marginLeft(), logicalTop, currBox->width() + currBox->marginWidth(), logicalHeight));
567 yield(FloatRect(logicalTop, currBox->inlineBoxWrapper()->y() - currBox->marginTop(), logicalHeight, currBox->height() + currBox->marginHeight()));
578 int logicalHeight = container->style(rootBox->isFirstLineStyle())->font().fontMetrics().height();
583 logicalHeight));
587 logicalHeight,
596 int logicalHeight = container->style(rootBox->isFirstLineStyle())->font().fontMetrics().height();
598 yield(FloatRect(childText->x(), logicalTop, childText->logicalWidth(), logicalHeight));
600 yield(FloatRect(logicalTop, childText->y(), logicalHeight, childText->logicalWidth()));
    [all...]
RenderText.cpp     [all...]
RenderBlockLineLayout.cpp 74 LayoutUnit offset = logicalHeight() + logicalHeightForLine(this, false) - LayoutUnit(1);
148 LayoutUnit height = m_block->logicalHeight();
149 LayoutUnit logicalHeight = logicalHeightForLine(m_block, m_isFirstLine, replacedHeight);
150 m_left = m_block->logicalLeftOffsetForLine(height, shouldIndentText(), logicalHeight);
151 m_right = m_block->logicalRightOffsetForLine(height, shouldIndentText(), logicalHeight);
163 LayoutUnit height = m_block->logicalHeight();
182 previousShapeOutsideInfo->computeSegmentsForContainingBlockLine(m_block->logicalHeight(), m_block->logicalTopForFloat(previousFloat), logicalHeightForLine(m_block, m_isFirstLine));
190 shapeOutsideInfo->computeSegmentsForContainingBlockLine(m_block->logicalHeight(), m_block->logicalTopForFloat(newFloat), logicalHeightForLine(m_block, m_isFirstLine));
237 LayoutUnit lastFloatLogicalBottom = m_block->logicalHeight();
290 block->setLogicalHeight(block->logicalHeight() + floatPaginationStrut())
    [all...]
RenderBox.cpp 545 LayoutUnit RenderBox::constrainLogicalHeightByMinMax(LayoutUnit logicalHeight, LayoutUnit intrinsicContentHeight) const
551 logicalHeight = min(logicalHeight, maxH);
553 return max(logicalHeight, computeLogicalHeightUsing(styleToUse->logicalMinHeight(), intrinsicContentHeight));
556 LayoutUnit RenderBox::constrainContentBoxLogicalHeightByMinMax(LayoutUnit logicalHeight, LayoutUnit intrinsicContentHeight) const
562 logicalHeight = min(logicalHeight, maxH);
564 return max(logicalHeight, computeContentLogicalHeight(styleToUse->logicalMinHeight(), intrinsicContentHeight));
    [all...]
RenderBlock.cpp 181 (blockStyle->logicalHeight().isAuto() && !blockStyle->logicalHeight().value()) && blockStyle->marginAfterCollapse() != MSEPARATE;
    [all...]
  /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...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.h 447 Length logicalHeight() const { return isHorizontalWritingMode() ? height() : width(); }
    [all...]

Completed in 419 milliseconds