Searched defs:logicalBottom (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DLayoutBoxExtent.cpp43 LayoutUnit LayoutBoxExtent::logicalBottom(WritingMode writingMode) const function in class:WebCore::LayoutBoxExtent
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderLineBoxList.cpp148 bool RenderLineBoxList::rangeIntersectsRect(RenderBoxModelObject* renderer, LayoutUnit logicalTop, LayoutUnit logicalBottom, const LayoutRect& rect, const LayoutPoint& offset) const argument
156 LayoutUnit physicalEnd = block->flipForWritingMode(logicalBottom);
184 LayoutUnit logicalBottom = outlineSize + lastLineBottom; local
186 return rangeIntersectsRect(renderer, logicalTop, logicalBottom, rect, offset);
193 LayoutUnit logicalBottom = box->logicalBottomVisualOverflow(root->lineBottom()) + renderer->maximalOutlineSize(paintInfo.phase); local
195 return rangeIntersectsRect(renderer, logicalTop, logicalBottom, paintInfo.rect, offset);
H A DInlineBox.h219 int pixelSnappedLogicalBottom() const { return ceilf(logicalBottom()); }
223 float logicalBottom() const { return logicalTop() + logicalHeight(); } function in class:WebCore::InlineBox
H A DRenderBox.h86 LayoutUnit logicalBottom() const { return logicalTop() + logicalHeight(); } function in class:WebCore::RenderBox
672 Length logicalTop, Length logicalBottom, Length marginLogicalTop, Length marginLogicalBottom,
H A DRenderBlockFlow.cpp706 LayoutUnit logicalBottom = logicalBottomForFloat(floatingObject); local
711 changeLogicalBottom = max(changeLogicalBottom, max(logicalBottom, oldLogicalBottom));
713 if (logicalBottom != oldLogicalBottom) {
714 changeLogicalTop = min(changeLogicalTop, min(logicalBottom, oldLogicalBottom));
715 changeLogicalBottom = max(changeLogicalBottom, max(logicalBottom, oldLogicalBottom));
733 changeLogicalBottom = max(changeLogicalBottom, logicalBottom);
1615 LayoutUnit logicalBottom = 0; local
1620 logicalBottom = lowestFloatLogicalBottom(FloatingObject::FloatLeft);
1623 logicalBottom = lowestFloatLogicalBottom(FloatingObject::FloatRight);
1626 logicalBottom
2099 LayoutUnit logicalBottom = logicalBottomForFloat(floatingObject); local
2319 LayoutUnit logicalBottom = childLogicalTop + logicalBottomForFloat; local
[all...]
H A DRenderBlockLineLayout.cpp2046 LayoutUnit logicalBottom = lastLine->lineBottomWithLeading() + absoluteValue(lineDelta); local
2052 if (logicalBottomForFloat(floatingObject) >= logicalTop && logicalBottomForFloat(floatingObject) < logicalBottom)
H A DRenderBox.cpp2873 bool isOutOfFlowPositionedWithSpecifiedHeight = cb->isOutOfFlowPositioned() && (!cbstyle->logicalHeight().isAuto() || (!cbstyle->logicalTop().isAuto() && !cbstyle->logicalBottom().isAuto()));
3119 // FIXME: Check logicalTop/logicalBottom here to correctly handle vertical writing-mode.
3678 static void computeBlockStaticDistance(Length& logicalTop, Length& logicalBottom, const RenderBox* child, const RenderBoxModelObject* containerBlock) argument
3680 if (!logicalTop.isAuto() || !logicalBottom.isAuto())
3716 Length logicalBottomLength = styleToUse->logicalBottom();
3827 Length logicalTop, Length logicalBottom, Length marginBefore, Length marginAfter,
3832 ASSERT(!(logicalTop.isAuto() && logicalBottom.isAuto()));
3843 bool logicalBottomIsAuto = logicalBottom.isAuto();
3873 const LayoutUnit availableSpace = containerLogicalHeight - (logicalTopValue + logicalHeightValue + valueForLength(logicalBottom, containerLogicalHeight, renderView) + bordersPlusPadding);
3930 logicalTopValue = availableSpace - (logicalHeightValue + valueForLength(logicalBottom, containerLogicalHeigh
3825 computePositionedLogicalHeightUsing(Length logicalHeightLength, const RenderBoxModelObject* containerBlock, LayoutUnit containerLogicalHeight, LayoutUnit bordersPlusPadding, LayoutUnit logicalHeight, Length logicalTop, Length logicalBottom, Length marginBefore, Length marginAfter, LogicalExtentComputedValues& computedValues) const argument
4147 Length logicalBottom = style()->logicalBottom(); local
[all...]
H A DRenderBlock.cpp2576 lastLogicalTop = rootBlock->blockDirectionOffset(offsetFromRootBlock) + curr->logicalBottom();
2577 lastLogicalLeft = logicalLeftSelectionOffset(rootBlock, curr->logicalBottom());
2578 lastLogicalRight = logicalRightSelectionOffset(rootBlock, curr->logicalBottom());
2588 LayoutUnit lastLogicalTop, LayoutUnit lastLogicalLeft, LayoutUnit lastLogicalRight, LayoutUnit logicalBottom, const PaintInfo* paintInfo)
2591 LayoutUnit logicalHeight = rootBlock->blockDirectionOffset(offsetFromRootBlock) + logicalBottom - logicalTop;
2596 LayoutUnit logicalLeft = max(lastLogicalLeft, logicalLeftSelectionOffset(rootBlock, logicalBottom));
2597 LayoutUnit logicalRight = min(lastLogicalRight, logicalRightSelectionOffset(rootBlock, logicalBottom));
3021 void RenderBlock::markLinesDirtyInBlockRange(LayoutUnit logicalTop, LayoutUnit logicalBottom, RootInlineBox* highest) argument
3023 if (logicalTop >= logicalBottom)
3028 while (lowestDirtyLine && lowestDirtyLine->lineBottomWithLeading() >= logicalBottom
2587 blockSelectionGap(RenderBlock* rootBlock, const LayoutPoint& rootBlockPhysicalPosition, const LayoutSize& offsetFromRootBlock, LayoutUnit lastLogicalTop, LayoutUnit lastLogicalLeft, LayoutUnit lastLogicalRight, LayoutUnit logicalBottom, const PaintInfo* paintInfo) argument
5507 LayoutUnit logicalBottom = max(lineBox->lineBottomWithLeading(), logicalVisualOverflow.maxY()); local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DRenderStyle.h445 Length logicalBottom() const { return surround->offset.after(writingMode()); } function in class:WebCore::RenderStyle
727 void getTextShadowBlockDirectionExtent(LayoutUnit& logicalTop, LayoutUnit& logicalBottom) { getShadowBlockDirectionExtent(textShadow(), logicalTop, logicalBottom); } local
784 void getBoxShadowBlockDirectionExtent(LayoutUnit& logicalTop, LayoutUnit& logicalBottom) { getShadowBlockDirectionExtent(boxShadow(), logicalTop, logicalBottom); } local
1727 void getShadowBlockDirectionExtent(const ShadowList* shadow, LayoutUnit& logicalTop, LayoutUnit& logicalBottom) const
1729 return isHorizontalWritingMode() ? getShadowVerticalExtent(shadow, logicalTop, logicalBottom) : getShadowHorizontalExtent(shadow, logicalTop, logicalBottom);

Completed in 185 milliseconds