Searched refs:logicalRight (Results 1 - 11 of 11) sorted by relevance

/external/webkit/Source/WebCore/rendering/
H A DInlineBox.h237 float logicalRight() const { return logicalLeft() + logicalWidth(); } function in class:WebCore::InlineBox
246 int pixelSnappedLogicalRight() const { return ceilf(logicalRight()); }
H A DRenderBox.cpp2216 static void computeInlineStaticDistance(Length& logicalLeft, Length& logicalRight, const RenderBox* child, const RenderBoxModelObject* containerBlock, int containerLogicalWidth, argument
2219 if (!logicalLeft.isAuto() || !logicalRight.isAuto())
2238 logicalRight.setValue(Fixed, staticPosition);
2292 Length logicalRight = style()->logicalRight(); local
2320 computeInlineStaticDistance(logicalLeft, logicalRight, this, containerBlock, containerLogicalWidth, containerDirection);
2327 logicalLeft, logicalRight, marginLogicalLeft, marginLogicalRight,
2341 logicalLeft, logicalRight, marginLogicalLeft, marginLogicalRight,
2361 logicalLeft, logicalRight, marginLogicalLeft, marginLogicalRight,
2375 logicalLeft, logicalRight, marginLogicalLef
2396 computePositionedLogicalWidthUsing(Length logicalWidth, const RenderBoxModelObject* containerBlock, TextDirection containerDirection, int containerLogicalWidth, int bordersPlusPadding, Length logicalLeft, Length logicalRight, Length marginLogicalLeft, Length marginLogicalRight, int& logicalWidthValue, int& marginLogicalLeftValue, int& marginLogicalRightValue, int& logicalLeftPos) argument
2851 Length logicalRight = style()->logicalRight(); local
[all...]
H A DInlineFlowBox.h201 int logicalRightLayoutOverflow() const { return m_overflow ? (isHorizontal() ? m_overflow->maxXLayoutOverflow() : m_overflow->maxYLayoutOverflow()) : ceilf(logicalRight()); }
227 int logicalRightVisualOverflow() const { return m_overflow ? (isHorizontal() ? m_overflow->maxXVisualOverflow() : m_overflow->maxYVisualOverflow()) : ceilf(logicalRight()); }
H A DRootInlineBox.cpp324 lastBox->parent()->renderer(), lastBox->logicalRight(), selTop, selHeight, paintInfo));
335 int lastLogicalLeft = firstBox->logicalRight();
348 lastLogicalLeft = box->logicalRight();
474 if (leftPosition >= lastLeaf->logicalRight() && !lastLeaf->renderer()->isListMarker() && (!onlyEditableLeaves || isEditableLeaf(lastLeaf)))
483 if (leftPosition < leaf->logicalRight())
H A DRenderRubyRun.cpp295 logicalRightOverhang = min<int>(logicalRightOverhang, logicalWidth - rootInlineBox->logicalRight());
H A DRenderText.cpp490 if (lastTextBox() && pointBlockDirection >= lastTextBox()->root()->selectionTop() && pointLineDirection >= lastTextBox()->logicalRight()) {
512 if (pointLineDirection < box->logicalRight())
560 float rootRight = box->root()->logicalRight();
573 rightEdge = cb->logicalRight();
576 rightEdge = max(static_cast<float>(cb->logicalRight()), rootRight);
1349 if (curr == firstTextBox() || curr->logicalRight() > logicalRightSide)
1350 logicalRightSide = curr->logicalRight();
H A DRenderBox.h58 int logicalRight() const { return logicalLeft() + logicalWidth(); } function in class:WebCore::RenderBox
446 Length logicalLeft, Length logicalRight, Length marginLogicalLeft, Length marginLogicalRight,
H A DRenderBlock.cpp3002 result.uniteRight(logicalRightSelectionGap(rootBlock, rootBlockPhysicalPosition, offsetFromRootBlock, this, curr->logicalRight(), curr->logicalTop(), curr->logicalHeight(), paintInfo));
3028 int logicalRight = min(lastLogicalRight, logicalRightSelectionOffset(rootBlock, logicalBottom)); local
3029 int logicalWidth = logicalRight - logicalLeft;
3056 RenderObject* selObj, int logicalRight, int logicalTop, int logicalHeight, const PaintInfo* paintInfo)
3059 int rootBlockLogicalLeft = max(inlineDirectionOffset(rootBlock, offsetFromRootBlock) + logicalRight, max(logicalLeftSelectionOffset(rootBlock, logicalTop), logicalLeftSelectionOffset(rootBlock, logicalTop + logicalHeight)));
3102 int logicalRight = logicalRightOffsetForLine(position, false); local
3103 if (logicalRight == logicalRightOffsetForContent()) {
3107 return logicalRight;
3111 logicalRight += cb->logicalLeft();
3115 return logicalRight;
3055 logicalRightSelectionGap(RenderBlock* rootBlock, const IntPoint& rootBlockPhysicalPosition, const IntSize& offsetFromRootBlock, RenderObject* selObj, int logicalRight, int logicalTop, int logicalHeight, const PaintInfo* paintInfo) argument
[all...]
H A DRenderInline.cpp764 if (curr == firstLineBox() || curr->logicalRight() > logicalRightSide)
765 logicalRightSide = curr->logicalRight();
H A DRenderBlock.h127 RenderObject* selObj, int logicalRight, int logicalTop, int logicalHeight, const PaintInfo*);
/external/webkit/Source/WebCore/rendering/style/
H A DRenderStyle.h382 Length logicalRight() const { return isHorizontalWritingMode() ? right() : bottom(); } function in class:WebCore::RenderStyle
658 void getTextShadowInlineDirectionExtent(int& logicalLeft, int& logicalRight) { getShadowInlineDirectionExtent(textShadow(), logicalLeft, logicalRight); } local
678 void getBoxShadowInlineDirectionExtent(int& logicalLeft, int& logicalRight) { getShadowInlineDirectionExtent(boxShadow(), logicalLeft, logicalRight); } local
1343 void getShadowInlineDirectionExtent(const ShadowData* shadow, int& logicalLeft, int& logicalRight) const
1345 return isHorizontalWritingMode() ? getShadowHorizontalExtent(shadow, logicalLeft, logicalRight) : getShadowVerticalExtent(shadow, logicalLeft, logicalRight);

Completed in 1162 milliseconds