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

  /external/webkit/Source/WebCore/rendering/
InlineBox.cpp 89 int InlineBox::logicalHeight() const
RenderReplaced.cpp 225 int logicalHeight;
226 if (lengthIsSpecified(style()->logicalHeight()))
227 logicalHeight = computeReplacedLogicalHeightUsing(style()->logicalHeight());
229 logicalHeight = calcAspectRatioLogicalHeight();
231 logicalHeight = intrinsicLogicalHeight();
234 int maxLogicalHeight = style()->logicalMaxHeight().isUndefined() ? logicalHeight : computeReplacedLogicalHeightUsing(style()->logicalMaxHeight());
236 return max(minLogicalHeight, min(logicalHeight, maxLogicalHeight));
RenderTableSection.h 52 int layoutRows(int logicalHeight);
82 Length logicalHeight;
RenderImage.cpp 467 switch (style()->logicalHeight().type()) {
519 int logicalHeight;
521 logicalHeight = computeReplacedLogicalHeightUsing(style()->logicalHeight());
524 logicalHeight = style()->isHorizontalWritingMode() ? size.height() : size.width();
526 logicalHeight = 0; // If the image is relatively-sized, set the height to 0 until there is a set container size.
528 logicalHeight = calcAspectRatioLogicalHeight();
531 int maxLogicalHeight = style()->logicalMaxHeight().isUndefined() ? logicalHeight : computeReplacedLogicalHeightUsing(style()->logicalMaxHeight());
534 logicalHeight = max(minLogicalHeight, min(logicalHeight, maxLogicalHeight))
    [all...]
RenderBox.h 60 int logicalBottom() const { return logicalTop() + logicalHeight(); }
62 int logicalHeight() const { return style()->isHorizontalWritingMode() ? height() : width(); }
289 return document()->inQuirksMode() && style()->logicalHeight().isAuto() && !isFloatingOrPositioned() && (isRoot() || isBody());
448 void computePositionedLogicalHeightUsing(Length logicalHeight, const RenderBoxModelObject* containerBlock,
RenderInline.cpp 503 int logicalHeight = container->style(rootBox->isFirstLineStyle())->font().fontMetrics().height();
506 result = FloatRect(offset.width() + currBox->inlineBoxWrapper()->x() - currBox->marginLeft(), offset.height() + logicalTop, currBox->width() + currBox->marginLeft() + currBox->marginRight(), logicalHeight);
508 result = FloatRect(offset.width() + logicalTop, offset.height() + currBox->inlineBoxWrapper()->y() - currBox->marginTop(), logicalHeight, currBox->height() + currBox->marginTop() + currBox->marginBottom());
520 int logicalHeight = container->style(rootBox->isFirstLineStyle())->font().fontMetrics().height();
526 logicalHeight);
530 logicalHeight,
540 int logicalHeight = container->style(rootBox->isFirstLineStyle())->font().fontMetrics().height();
543 result = FloatRect(offset.width() + childText->x(), offset.height() + logicalTop, childText->logicalWidth(), logicalHeight);
545 result = FloatRect(offset.width() + logicalTop, offset.height() + childText->y(), logicalHeight, childText->logicalWidth());
587 int logicalHeight = container->style(rootBox->isFirstLineStyle())->font().fontMetrics().height()
    [all...]
RenderTableSection.cpp 54 row->logicalHeight = row->rowRenderer->style()->logicalHeight();
55 if (row->logicalHeight.isRelative())
56 row->logicalHeight = Length();
182 m_grid[r].logicalHeight = Length();
207 Length logicalHeight = cell->style()->logicalHeight();
208 if (logicalHeight.isPositive() || (logicalHeight.isRelative() && logicalHeight.value() >= 0))
    [all...]
InlineFlowBox.cpp 616 int boxHeight = curr->logicalHeight();
651 int bottomRubyBaseLeading = (curr->logicalHeight() - rubyBase->logicalBottom()) + rubyBase->logicalHeight() - (rubyBase->lastRootBox() ? rubyBase->lastRootBox()->lineBottom() : 0);
697 lineBottom = max(lineBottom, logicalTop() + logicalHeight());
709 setLogicalTop(lineBottom - (logicalTop() - lineTop) - logicalHeight());
    [all...]
RenderText.cpp 329 IntRect r = IntRect(box->x(), box->y(), box->logicalWidth(), box->logicalHeight());
345 r.setHeight(box->logicalHeight());
438 r.setHeight(box->logicalHeight());
441 r.setWidth(box->logicalHeight());
    [all...]
RenderBox.cpp 219 if (style() && (style()->logicalHeight().isPercent() || style()->logicalMinHeight().isPercent() || style()->logicalMaxHeight().isPercent()))
303 if (oldStyle && (oldStyle->logicalHeight().isPercent() || oldStyle->logicalMinHeight().isPercent() || oldStyle->logicalMaxHeight().isPercent()))
    [all...]
RenderBlock.cpp 108 (block->style()->logicalHeight().isAuto() && block->style()->logicalHeight().value() == 0) && block->style()->marginAfterCollapse() != MSEPARATE;
    [all...]
  /frameworks/base/core/java/android/view/
DisplayInfo.java 109 public int logicalHeight;
222 && logicalHeight == other.logicalHeight
252 logicalHeight = other.logicalHeight;
277 logicalHeight = source.readInt();
303 dest.writeInt(logicalHeight);
325 getMetricsWithSize(outMetrics, cih, logicalWidth, logicalHeight);
330 logicalWidth : logicalHeight;
335 logicalHeight : logicalWidth
    [all...]
  /external/webkit/Source/WebCore/rendering/style/
RenderStyle.cpp     [all...]

Completed in 218 milliseconds