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

/external/webkit/Source/WebCore/rendering/
H A DRenderLineBoxList.cpp149 bool RenderLineBoxList::rangeIntersectsRect(RenderBoxModelObject* renderer, int logicalTop, int logicalBottom, const IntRect& rect, int tx, int ty) const argument
157 int physicalEnd = block->flipForWritingMode(logicalBottom);
189 int logicalBottom = outlineSize + lastLineBottom; local
191 return rangeIntersectsRect(renderer, logicalTop, logicalBottom, rect, tx, ty);
198 int logicalBottom = box->logicalBottomVisualOverflow(root->lineBottom()) + renderer->maximalOutlineSize(paintInfo.phase); local
200 return rangeIntersectsRect(renderer, logicalTop, logicalBottom, paintInfo.rect, tx, ty);
H A DInlineBox.h250 int logicalBottom() const { return logicalTop() + logicalHeight(); } function in class:WebCore::InlineBox
H A DRenderBox.h60 int logicalBottom() const { return logicalTop() + logicalHeight(); } function in class:WebCore::RenderBox
450 Length logicalTop, Length logicalBottom, Length marginLogicalTop, Length marginLogicalBottom,
H A DRenderBlockLineLayout.cpp1462 int logicalBottom = lastLine->blockLogicalHeight() + abs(delta); local
1468 if (logicalBottomForFloat(f) >= logicalTop && logicalBottomForFloat(f) < logicalBottom)
1499 int logicalBottom = lastLine->blockLogicalHeight() + abs(delta); local
1505 if (logicalBottomForFloat(f) >= logicalTop && logicalBottomForFloat(f) < logicalBottom)
H A DRenderBox.cpp2569 static void computeBlockStaticDistance(Length& logicalTop, Length& logicalBottom, const RenderBox* child, const RenderBoxModelObject* containerBlock) argument
2571 if (!logicalTop.isAuto() || !logicalBottom.isAuto())
2611 Length logicalBottom = style()->logicalBottom(); local
2632 computeBlockStaticDistance(logicalTop, logicalBottom, this, containerBlock);
2639 logicalTop, logicalBottom, marginBefore, marginAfter,
2654 logicalTop, logicalBottom, marginBefore, marginAfter,
2673 logicalTop, logicalBottom, marginBefore, marginAfter,
2712 Length logicalTop, Length logicalBottom, Length marginBefore, Length marginAfter,
2717 ASSERT(!(logicalTop.isAuto() && logicalBottom
2710 computePositionedLogicalHeightUsing(Length logicalHeightLength, const RenderBoxModelObject* containerBlock, int containerLogicalHeight, int bordersPlusPadding, Length logicalTop, Length logicalBottom, Length marginBefore, Length marginAfter, int& logicalHeightValue, int& marginBeforeValue, int& marginAfterValue, int& logicalTopPos) argument
3017 Length logicalBottom = style()->logicalBottom(); local
[all...]
H A DRenderBlock.cpp3007 lastLogicalTop = blockDirectionOffset(rootBlock, offsetFromRootBlock) + curr->logicalBottom();
3008 lastLogicalLeft = logicalLeftSelectionOffset(rootBlock, curr->logicalBottom());
3009 lastLogicalRight = logicalRightSelectionOffset(rootBlock, curr->logicalBottom());
3019 int lastLogicalTop, int lastLogicalLeft, int lastLogicalRight, int logicalBottom, const PaintInfo* paintInfo)
3022 int logicalHeight = blockDirectionOffset(rootBlock, offsetFromRootBlock) + logicalBottom - logicalTop;
3027 int logicalLeft = max(lastLogicalLeft, logicalLeftSelectionOffset(rootBlock, logicalBottom));
3028 int logicalRight = min(lastLogicalRight, logicalRightSelectionOffset(rootBlock, logicalBottom));
3219 int logicalBottom = logicalBottomForFloat(r); local
3222 if (logicalBottom < 0 || logicalBottom < logicalTo
3018 blockSelectionGap(RenderBlock* rootBlock, const IntPoint& rootBlockPhysicalPosition, const IntSize& offsetFromRootBlock, int lastLogicalTop, int lastLogicalLeft, int lastLogicalRight, int logicalBottom, const PaintInfo* paintInfo) argument
3590 markLinesDirtyInBlockRange(int logicalTop, int logicalBottom, RootInlineBox* highest) argument
3683 int logicalBottom = logicalBottomForFloat(f); local
3736 int logicalBottom = childLogicalTop + logicalBottomForFloat; local
[all...]
/external/webkit/Source/WebCore/rendering/style/
H A DRenderStyle.h384 Length logicalBottom() const { return isHorizontalWritingMode() ? (isFlippedBlocksWritingMode() ? top() : bottom()) : (isFlippedBlocksWritingMode() ? left() : right()); } function in class:WebCore::RenderStyle
659 void getTextShadowBlockDirectionExtent(int& logicalTop, int& logicalBottom) { getShadowBlockDirectionExtent(textShadow(), logicalTop, logicalBottom); } local
679 void getBoxShadowBlockDirectionExtent(int& logicalTop, int& logicalBottom) { getShadowBlockDirectionExtent(boxShadow(), logicalTop, logicalBottom); } local
1347 void getShadowBlockDirectionExtent(const ShadowData* shadow, int& logicalTop, int& logicalBottom) const
1349 return isHorizontalWritingMode() ? getShadowVerticalExtent(shadow, logicalTop, logicalBottom) : getShadowHorizontalExtent(shadow, logicalTop, logicalBottom);

Completed in 118 milliseconds