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/line/
LineWidth.cpp 55 LayoutUnit height = m_block.logicalHeight();
56 LayoutUnit logicalHeight = m_block.minLineHeightForReplacedRenderer(m_isFirstLine, replacedHeight);
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 shapeOutsideInfo->updateDeltasForContainingBlockLine(m_block, *newFloat, m_block.logicalHeight(), lineHeight);
160 LayoutUnit lineLogicalTop = m_block.logicalHeight();
186 LayoutUnit lastFloatLogicalBottom = m_block.logicalHeight();
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
InlineBox.cpp 120 float InlineBox::logicalHeight() const
RenderFlowThread.cpp 329 RenderRegion* endRegion = regionAtBlockOffset(offsetFromLogicalTopOfFirstPage + box->logicalHeight());
360 LayoutUnit logicalHeight = 0;
368 LayoutUnit regionLogicalHeight = std::min<LayoutUnit>(RenderFlowThread::maxLogicalHeight() - logicalHeight, region->logicalHeightOfAllFlowThreadContent());
370 LayoutRect regionRect(style()->direction() == LTR ? LayoutUnit() : logicalWidth() - regionLogicalWidth, logicalHeight, regionLogicalWidth, regionLogicalHeight);
374 m_regionIntervalTree.add(RegionIntervalTree::createInterval(logicalHeight, logicalHeight + regionLogicalHeight, region));
376 logicalHeight += regionLogicalHeight;
RenderReplaced.cpp 235 if (style()->logicalHeight().isAuto())
238 if (style()->logicalHeight().isSpecified()) {
244 if (style()->logicalHeight().isIntrinsic())
298 if (intrinsicRatio && !intrinsicSize.isEmpty() && style()->logicalWidth().isAuto() && style()->logicalHeight().isAuto()) {
385 LayoutUnit logicalHeight = computeReplacedLogicalHeight();
386 return computeReplacedLogicalWidthRespectingMinMaxWidth(roundToInt(round(logicalHeight * intrinsicRatio)), shouldComputePreferred);
438 return computeReplacedLogicalHeightRespectingMinMaxHeight(computeReplacedLogicalHeightUsing(style()->logicalHeight()));
RenderTableSection.h 122 Length logicalHeight;
InlineFlowBox.cpp 644 LayoutUnit boxHeight = curr->logicalHeight();
679 LayoutUnit bottomRubyBaseLeading = (curr->logicalHeight() - rubyBase->logicalBottom()) + rubyBase->logicalHeight() - (rubyBase->lastRootBox() ? rubyBase->lastRootBox()->lineBottom() : LayoutUnit());
    [all...]
RenderBox.h 111 LayoutUnit logicalBottom() const { return logicalTop() + logicalHeight(); }
113 LayoutUnit logicalHeight() const { return style()->isHorizontalWritingMode() ? height() : width(); }
116 LayoutUnit constrainLogicalHeightByMinMax(LayoutUnit logicalHeight, LayoutUnit intrinsicContentHeight) const;
117 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;
    [all...]
RenderInline.cpp 576 int logicalHeight = container->style(rootBox.isFirstLineStyle())->font().fontMetrics().height();
578 yield(FloatRect(currBox->inlineBoxWrapper()->x() - currBox->marginLeft(), logicalTop, (currBox->width() + currBox->marginWidth()).toFloat(), logicalHeight));
580 yield(FloatRect(logicalTop, currBox->inlineBoxWrapper()->y() - currBox->marginTop(), logicalHeight, (currBox->height() + currBox->marginHeight()).toFloat()));
591 int logicalHeight = container->style(rootBox.isFirstLineStyle())->font().fontMetrics().height();
596 logicalHeight));
600 logicalHeight,
609 int logicalHeight = container->style(rootBox.isFirstLineStyle())->font().fontMetrics().height();
611 yield(FloatRect(childText->x(), logicalTop, childText->logicalWidth(), logicalHeight));
613 yield(FloatRect(logicalTop, childText->y(), logicalHeight, childText->logicalWidth()));
    [all...]
RenderText.cpp     [all...]
RenderBlock.cpp     [all...]
RenderBox.cpp 552 LayoutUnit RenderBox::constrainLogicalHeightByMinMax(LayoutUnit logicalHeight, LayoutUnit intrinsicContentHeight) const
558 logicalHeight = min(logicalHeight, maxH);
560 return max(logicalHeight, computeLogicalHeightUsing(styleToUse->logicalMinHeight(), intrinsicContentHeight));
563 LayoutUnit RenderBox::constrainContentBoxLogicalHeightByMinMax(LayoutUnit logicalHeight, LayoutUnit intrinsicContentHeight) const
569 logicalHeight = min(logicalHeight, maxH);
571 return max(logicalHeight, computeContentLogicalHeight(styleToUse->logicalMinHeight(), intrinsicContentHeight));
    [all...]
  /frameworks/base/core/java/android/view/
DisplayInfo.java 113 public int logicalHeight;
268 && logicalHeight == other.logicalHeight
303 logicalHeight = other.logicalHeight;
335 logicalHeight = source.readInt();
367 dest.writeInt(logicalHeight);
405 getMetricsWithSize(outMetrics, compatInfo, token, logicalWidth, logicalHeight);
410 logicalWidth : logicalHeight;
415 logicalHeight : logicalWidth
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.h 486 const Length& logicalHeight() const { return isHorizontalWritingMode() ? height() : width(); }
    [all...]

Completed in 523 milliseconds