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 shapeDeltas = shapeOutsideInfo->computeDeltasForContainingBlockLine(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/paint/
InlineFlowBoxPainter.cpp 333 LayoutUnit logicalHeight = m_inlineFlowBox.isHorizontal() ? rect.height() : rect.width();
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/rendering/
InlineBox.cpp 120 float InlineBox::logicalHeight() const
RenderFlowThread.cpp 220 LayoutUnit logicalHeight = 0;
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;
RenderReplaced.cpp 216 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();
365 return computeReplacedLogicalWidthRespectingMinMaxWidth(roundToInt(round(logicalHeight * intrinsicRatio)), shouldComputePreferred);
404 return computeReplacedLogicalHeightRespectingMinMaxHeight(computeReplacedLogicalHeightUsing(style()->logicalHeight()));
RenderTableSection.h 132 Length logicalHeight;
InlineFlowBox.cpp 653 LayoutUnit boxHeight = curr->logicalHeight();
689 LayoutUnit bottomRubyBaseLeading = (curr->logicalHeight() - rubyBase->logicalBottom()) + rubyBase->logicalHeight() - (rubyBase->lastRootBox() ? rubyBase->lastRootBox()->lineBottom() : LayoutUnit());
    [all...]
RenderBox.h 113 LayoutUnit logicalBottom() const { return logicalTop() + logicalHeight(); }
115 LayoutUnit logicalHeight() const { return style()->isHorizontalWritingMode() ? height() : width(); }
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;
    [all...]
RenderInline.cpp 594 int logicalHeight = container->style(rootBox.isFirstLineStyle())->font().fontMetrics().height();
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();
614 logicalHeight));
618 logicalHeight,
627 int logicalHeight = container->style(rootBox.isFirstLineStyle())->font().fontMetrics().height();
629 yield(FloatRect(childText->x(), logicalTop, childText->logicalWidth(), logicalHeight));
631 yield(FloatRect(logicalTop, childText->y(), logicalHeight, childText->logicalWidth()));
    [all...]
RenderText.cpp     [all...]
RenderBlock.cpp     [all...]
RenderBox.cpp 531 LayoutUnit RenderBox::constrainLogicalHeightByMinMax(LayoutUnit logicalHeight, LayoutUnit intrinsicContentHeight) const
537 logicalHeight = std::min(logicalHeight, maxH);
539 return std::max(logicalHeight, computeLogicalHeightUsing(styleToUse->logicalMinHeight(), intrinsicContentHeight));
542 LayoutUnit RenderBox::constrainContentBoxLogicalHeightByMinMax(LayoutUnit logicalHeight, LayoutUnit intrinsicContentHeight) const
548 logicalHeight = std::min(logicalHeight, maxH);
550 return std::max(logicalHeight, computeContentLogicalHeight(styleToUse->logicalMinHeight(), intrinsicContentHeight));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.h 470 const Length& logicalHeight() const { return isHorizontalWritingMode() ? height() : width(); }
    [all...]

Completed in 777 milliseconds