Searched defs:logicalRight (Results 1 - 11 of 11) sorted by last modified time

/external/chromium_org/third_party/WebKit/Source/platform/
H A DLengthBox.cpp41 const Length& LengthBox::logicalRight(WritingMode writingMode) const function in class:blink::LengthBox
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DLayoutBoxExtent.cpp53 LayoutUnit LayoutBoxExtent::logicalRight(WritingMode writingMode) const function in class:blink::LayoutBoxExtent
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DFloatingObjects.cpp441 LayoutUnit logicalRight = m_renderer->logicalRightForFloat(&floatingObject); local
442 if (logicalRight > m_offset) {
443 m_offset = logicalRight;
486 LayoutUnit logicalRight = m_renderer->logicalRightForFloat(&floatingObject); local
492 logicalRight += shapeDeltas.rightMarginBoxDelta();
494 if (logicalRight > m_offset) {
495 m_offset = logicalRight;
H A DInlineBox.h212 float logicalRight() const { return logicalLeft() + logicalWidth(); } function in class:blink::InlineBox
221 int pixelSnappedLogicalRight() const { return ceilf(logicalRight()); }
H A DInlineFlowBox.h180 void endPlacingBoxRangesInInlineDirection(float logicalLeft, float logicalRight, float minLogicalLeft, float maxLogicalRight) argument
182 setLogicalWidth(logicalRight - logicalLeft);
183 if (knownToHaveNoOverflow() && (minLogicalLeft < logicalLeft || maxLogicalRight > logicalRight))
232 static_cast<LayoutUnit>(ceilf(logicalRight()));
259 LayoutUnit logicalRightVisualOverflow() const { return m_overflow ? (isHorizontal() ? m_overflow->visualOverflowRect().maxX() : m_overflow->visualOverflowRect().maxY()) : static_cast<LayoutUnit>(ceilf(logicalRight())); }
H A DRenderBlock.cpp1985 result.uniteRight(logicalRightSelectionGap(rootBlock, rootBlockPhysicalPosition, offsetFromRootBlock, this, curr->logicalRight(), curr->logicalTop(), curr->logicalHeight(), paintInfo));
2019 LayoutUnit logicalRight = std::min(lastLogicalRight, logicalRightSelectionOffset(rootBlock, logicalBottom)); local
2020 LayoutUnit logicalWidth = logicalRight - logicalLeft;
2047 const RenderObject* selObj, LayoutUnit logicalRight, LayoutUnit logicalTop, LayoutUnit logicalHeight, const PaintInfo* paintInfo) const
2050 LayoutUnit rootBlockLogicalLeft = std::max(rootBlock->inlineDirectionOffset(offsetFromRootBlock) + logicalRight, max(logicalLeftSelectionOffset(rootBlock, logicalTop), logicalLeftSelectionOffset(rootBlock, logicalTop + logicalHeight)));
2046 logicalRightSelectionGap(const RenderBlock* rootBlock, const LayoutPoint& rootBlockPhysicalPosition, const LayoutSize& offsetFromRootBlock, const RenderObject* selObj, LayoutUnit logicalRight, LayoutUnit logicalTop, LayoutUnit logicalHeight, const PaintInfo* paintInfo) const argument
H A DRenderBlockFlow.cpp2661 right = std::max(right, x + static_cast<LayoutUnit>(ceilf(box->lastChild()->logicalRight())));
2824 LayoutUnit logicalRight = logicalRightOffsetForLine(position, false); local
2825 if (logicalRight == logicalRightOffsetForContent())
2830 logicalRight += cb->logicalLeft();
2833 return logicalRight;
H A DRenderBox.cpp2770 static void computeInlineStaticDistance(Length& logicalLeft, Length& logicalRight, const RenderBox* child, const RenderBoxModelObject* containerBlock, LayoutUnit containerLogicalWidth) argument
2772 if (!logicalLeft.isAuto() || !logicalRight.isAuto())
2788 staticPosition -= curr->style()->logicalRight().value();
2810 staticPosition += curr->style()->logicalRight().value();
2816 logicalRight.setValue(Fixed, staticPosition);
2860 Length logicalRightLength = style()->logicalRight();
2956 const Length& logicalLeft, const Length& logicalRight, const Length& marginLogicalLeft,
2964 ASSERT(!(logicalLeft.isAuto() && logicalRight.isAuto()));
2972 bool logicalRightIsAuto = logicalRight.isAuto();
2994 const LayoutUnit availableSpace = containerLogicalWidth - (logicalLeftValue + computedValues.m_extent + valueForLength(logicalRight, containerLogicalWidt
2954 computePositionedLogicalWidthUsing(Length logicalWidth, const RenderBoxModelObject* containerBlock, TextDirection containerDirection, LayoutUnit containerLogicalWidth, LayoutUnit bordersPlusPadding, const Length& logicalLeft, const Length& logicalRight, const Length& marginLogicalLeft, const Length& marginLogicalRight, LogicalExtentComputedValues& computedValues) const argument
3418 Length logicalRight = style()->logicalRight(); local
[all...]
H A DRenderBox.h111 LayoutUnit logicalRight() const { return logicalLeft() + logicalWidth(); } function in class:blink::RenderBox
293 LayoutUnit marginLogicalRight() const { return m_marginBox.logicalRight(style()->writingMode()); }
683 const Length& logicalLeft, const Length& logicalRight, const Length& marginLogicalLeft,
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
H A DShape.h47 , logicalRight(0)
52 LineSegment(float logicalLeft, float logicalRight) argument
54 , logicalRight(logicalRight)
60 float logicalRight; member in struct:blink::LineSegment
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DRenderStyle.h445 const Length& logicalRight() const { return surround->offset.logicalRight(writingMode()); } function in class:blink::RenderStyle
736 void getTextShadowInlineDirectionExtent(LayoutUnit& logicalLeft, LayoutUnit& logicalRight) { getShadowInlineDirectionExtent(textShadow(), logicalLeft, logicalRight); } local
806 void getBoxShadowInlineDirectionExtent(LayoutUnit& logicalLeft, LayoutUnit& logicalRight) { getShadowInlineDirectionExtent(boxShadow(), logicalLeft, logicalRight); } local
1749 void getShadowInlineDirectionExtent(const ShadowList* shadow, LayoutUnit& logicalLeft, LayoutUnit& logicalRight) const
1751 return isHorizontalWritingMode() ? getShadowHorizontalExtent(shadow, logicalLeft, logicalRight) : getShadowVerticalExtent(shadow, logicalLeft, logicalRight);

Completed in 279 milliseconds