Searched refs:contentLogicalHeight (Results 1 - 5 of 5) sorted by relevance

/external/webkit/Source/WebCore/rendering/
H A DRenderBox.cpp1831 h = Length(parentBox()->contentLogicalHeight() - marginBefore() - marginAfter() - borderAndPaddingLogicalHeight(), Fixed);
1973 result = cb->contentLogicalHeight();
2107 int newHeight = block->computeContentBoxLogicalHeight(block->contentLogicalHeight());
2714 int contentLogicalHeight = logicalHeight() - bordersPlusPadding; local
2724 logicalHeightLength.setValue(Fixed, contentLogicalHeight);
2799 logicalHeightValue = contentLogicalHeight;
2804 logicalHeightValue = contentLogicalHeight;
H A DRenderBox.h168 int contentLogicalHeight() const { return style()->isHorizontalWritingMode() ? contentHeight() : contentWidth(); } function in class:WebCore::RenderBox
H A DRenderTableCell.cpp318 return paddingBefore() + borderBefore() + contentLogicalHeight();
H A DRenderTableSection.cpp967 firstLineBaseline = max(firstLineBaseline, cell->logicalTop() + cell->paddingBefore() + cell->borderBefore() + cell->contentLogicalHeight());
H A DRenderBlock.cpp1210 int columnHeight = contentLogicalHeight();
4405 view()->layoutState()->pageLogicalOffset(borderBefore() + paddingBefore() + contentLogicalHeight()) - colInfo->forcedBreakOffset());
4408 } else if (contentLogicalHeight() > pageLogicalHeight * desiredColumnCount) {
4410 columnHeight = max(colInfo->minimumColumnHeight(), (int)ceilf((float)contentLogicalHeight() / desiredColumnCount));
4422 colInfo->setColumnCountAndHeight(ceilf((float)contentLogicalHeight() / pageLogicalHeight), pageLogicalHeight);

Completed in 66 milliseconds