HomeSort by relevance Sort by last modified time
    Searched refs:logicalLeft (Results 1 - 25 of 38) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
Shape.h 46 : logicalLeft(0)
52 LineSegment(float logicalLeft, float logicalRight)
53 : logicalLeft(logicalLeft)
59 float logicalLeft;
BoxShapeTest.cpp 61 EXPECT_FLOAT_EQ(expectedLeft, segment.logicalLeft); \
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderRubyText.cpp 63 void RenderRubyText::adjustInlineDirectionLineBounds(unsigned expansionOpportunityCount, float& logicalLeft, float& logicalWidth) const
68 return RenderBlockFlow::adjustInlineDirectionLineBounds(expansionOpportunityCount, logicalLeft, logicalWidth);
80 logicalLeft += inset / 2;
RenderRubyText.h 53 virtual void adjustInlineDirectionLineBounds(unsigned expansionOpportunityCount, float& logicalLeft, float& logicalWidth) const OVERRIDE;
RenderRubyBase.h 56 virtual void adjustInlineDirectionLineBounds(unsigned expansionOpportunityCount, float& logicalLeft, float& logicalWidth) const OVERRIDE;
RenderFieldset.cpp 74 LayoutUnit logicalLeft;
78 logicalLeft = (logicalWidth() - logicalWidthForChild(legend)) / 2;
81 logicalLeft = logicalWidth() - borderEnd() - paddingEnd() - logicalWidthForChild(legend);
84 logicalLeft = borderStart() + paddingStart() + marginStartForChild(legend);
90 logicalLeft = borderStart() + paddingStart();
96 logicalLeft = centeredWidth - centeredWidth / 2;
100 logicalLeft = logicalWidth() - borderStart() - paddingStart() - marginStartForChild(legend) - logicalWidthForChild(legend);
105 setLogicalLeftForChild(legend, logicalLeft);
RenderRubyBase.cpp 136 void RenderRubyBase::adjustInlineDirectionLineBounds(unsigned expansionOpportunityCount, float& logicalLeft, float& logicalWidth) const
145 logicalLeft += inset / 2;
InlineFlowBox.h 125 // logicalLeft = left in a horizontal line and top in a vertical line.
176 float placeBoxesInInlineDirection(float logicalLeft, bool& needsWordSpacing);
178 float& logicalLeft, float& minLogicalLeft, float& maxLogicalRight, bool& needsWordSpacing);
179 void beginPlacingBoxRangesInInlineDirection(float logicalLeft) { setLogicalLeft(logicalLeft); }
180 void endPlacingBoxRangesInInlineDirection(float logicalLeft, float logicalRight, float minLogicalLeft, float maxLogicalRight)
182 setLogicalWidth(logicalRight - logicalLeft);
183 if (knownToHaveNoOverflow() && (minLogicalLeft < logicalLeft || maxLogicalRight > logicalRight))
227 static_cast<LayoutUnit>(logicalLeft());
258 LayoutUnit logicalLeftVisualOverflow() const { return m_overflow ? (isHorizontal() ? m_overflow->visualOverflowRect().x() : m_overflow->visualOverflowRect().y()) : static_cast<LayoutUnit>(logicalLeft()); }
    [all...]
InlineFlowBox.cpp 362 float InlineFlowBox::placeBoxesInInlineDirection(float logicalLeft, bool& needsWordSpacing)
365 beginPlacingBoxRangesInInlineDirection(logicalLeft);
367 float startLogicalLeft = logicalLeft;
368 logicalLeft += borderLogicalLeft() + paddingLogicalLeft();
371 float maxLogicalRight = logicalLeft;
373 placeBoxRangeInInlineDirection(firstChild(), 0, logicalLeft, minLogicalLeft, maxLogicalRight, needsWordSpacing);
375 logicalLeft += borderLogicalRight() + paddingLogicalRight();
376 endPlacingBoxRangesInInlineDirection(startLogicalLeft, logicalLeft, minLogicalLeft, maxLogicalRight);
377 return logicalLeft;
381 float& logicalLeft, float& minLogicalLeft, float& maxLogicalRight, bool& needsWordSpacing
    [all...]
RenderBlockLineLayout.cpp 298 static void updateLogicalWidthForLeftAlignedBlock(bool isLeftToRightDirection, BidiRun* trailingSpaceRun, float& logicalLeft, float& totalLogicalWidth, float availableLogicalWidth)
311 logicalLeft -= (totalLogicalWidth - availableLogicalWidth);
314 static void updateLogicalWidthForRightAlignedBlock(bool isLeftToRightDirection, BidiRun* trailingSpaceRun, float& logicalLeft, float& totalLogicalWidth, float availableLogicalWidth)
325 logicalLeft += availableLogicalWidth - totalLogicalWidth;
333 logicalLeft += availableLogicalWidth - totalLogicalWidth;
336 static void updateLogicalWidthForCenterAlignedBlock(bool isLeftToRightDirection, BidiRun* trailingSpaceRun, float& logicalLeft, float& totalLogicalWidth, float availableLogicalWidth)
345 logicalLeft += std::max<float>((availableLogicalWidth - totalLogicalWidth) / 2, 0);
347 logicalLeft += totalLogicalWidth > availableLogicalWidth ? (availableLogicalWidth - totalLogicalWidth) : (availableLogicalWidth - totalLogicalWidth) / 2 - trailingSpaceWidth;
485 void RenderBlockFlow::updateLogicalWidthForAlignment(const ETextAlign& textAlign, const RootInlineBox* rootInlineBox, BidiRun* trailingSpaceRun, float& logicalLeft, float& totalLogicalWidth, float& availableLogicalWidth, unsigned expansionOpportunityCount)
500 updateLogicalWidthForLeftAlignedBlock(style()->isLeftToRightDirection(), trailingSpaceRun, logicalLeft, totalLogicalWidth, availableLogicalWidth)
    [all...]
InlineTextBox.cpp 225 FloatPoint startingPoint = FloatPoint(logicalLeft(), selTop.toFloat());
280 bool ltrFullTruncation = flowIsLTR && ellipsisX <= logicalLeft();
281 bool rtlFullTruncation = !flowIsLTR && ellipsisX >= logicalLeft() + logicalWidth();
290 bool rtlEllipsisWithinBox = !flowIsLTR && (ellipsisX > logicalLeft());
301 ellipsisX = ltr ? logicalLeft() + visibleBoxWidth : logicalRight() - visibleBoxWidth;
310 return std::min(ellipsisX, logicalLeft());
327 return logicalLeft() + widthOfVisibleText;
    [all...]
FloatingObjects.cpp 452 LayoutUnit logicalLeft = m_renderer->logicalLeftForFloat(&floatingObject);
453 if (logicalLeft < m_offset) {
454 m_offset = logicalLeft;
505 LayoutUnit logicalLeft = m_renderer->logicalLeftForFloat(&floatingObject);
511 logicalLeft += shapeDeltas.leftMarginBoxDelta();
513 if (logicalLeft < m_offset) {
514 m_offset = logicalLeft;
RenderBlockFlow.h 137 void setLogicalLeftForFloat(FloatingObject* floatingObject, LayoutUnit logicalLeft)
140 floatingObject->setX(logicalLeft);
142 floatingObject->setY(logicalLeft);
230 void setLogicalLeftForChild(RenderBox* child, LayoutUnit logicalLeft);
297 void updateLogicalWidthForAlignment(const ETextAlign&, const RootInlineBox*, BidiRun* trailingSpaceRun, float& logicalLeft, float& totalLogicalWidth, float& availableLogicalWidth, unsigned expansionOpportunityCount);
480 BidiRun* computeInlineDirectionPositionsForSegment(RootInlineBox*, const LineInfo&, ETextAlign, float& logicalLeft,
InlineBox.h 210 // The logicalLeft position is the left edge of the line box in a horizontal line and the top edge in a vertical line.
211 float logicalLeft() const { return isHorizontal() ? m_topLeft.x() : m_topLeft.y(); }
212 float logicalRight() const { return logicalLeft() + logicalWidth(); }
220 int pixelSnappedLogicalLeft() const { return logicalLeft(); }
RenderBox.cpp     [all...]
RootInlineBox.cpp 129 if (ltr && (logicalLeft() + logicalWidth() + ellipsisWidth) <= blockRightEdge) {
130 ellipsisBox->setLogicalLeft(logicalLeft() + logicalWidth());
309 &firstBox->parent()->renderer(), firstBox->logicalLeft(), selTop, selHeight, paintInfo));
329 LayoutRect logicalRect(lastLogicalLeft, selTop, box->logicalLeft() - lastLogicalLeft, selHeight);
506 if (leftPosition <= firstLeaf->logicalLeft() && !firstLeaf->renderer().isListMarker() && (!onlyEditableLeaves || isEditableLeaf(firstLeaf)))
584 lineLayoutOverflow.shiftXEdgeTo(std::min<LayoutUnit>(lineLayoutOverflow.x(), logicalLeft() - endPadding));
589 lineLayoutOverflow.shiftYEdgeTo(std::min<LayoutUnit>(lineLayoutOverflow.y(), logicalLeft() - endPadding));
    [all...]
RenderListItem.cpp 345 LayoutUnit markerOldLogicalLeft = m_marker->logicalLeft();
350 lineOffset += o->logicalLeft();
EllipsisBox.cpp 106 return enclosingIntRect(font.selectionRectForText(constructTextRun(&renderer(), font, m_str, style, TextRun::AllowTrailingExpansion), IntPoint(logicalLeft(), logicalTop() + root().selectionTopAdjustedForPrecedingBlock()), root().selectionHeightAdjustedForPrecedingBlock()));
RenderBlock.cpp     [all...]
RenderBox.h 110 LayoutUnit logicalLeft() const { return style()->isHorizontalWritingMode() ? x() : y(); }
111 LayoutUnit logicalRight() const { return logicalLeft() + logicalWidth(); }
292 LayoutUnit marginLogicalLeft() const { return m_marginBox.logicalLeft(style()->writingMode()); }
    [all...]
RenderRubyRun.cpp 278 logicalLeftOverhang = std::min<int>(logicalLeftOverhang, rootInlineBox->logicalLeft());
  /external/chromium_org/third_party/WebKit/Source/platform/
LengthBox.cpp 36 const Length& LengthBox::logicalLeft(WritingMode writingMode) const
LengthBox.h 75 const Length& logicalLeft(WritingMode) const;
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
LayoutBoxExtent.h 59 LayoutUnit logicalLeft(WritingMode) const;
LayoutBoxExtent.cpp 48 LayoutUnit LayoutBoxExtent::logicalLeft(WritingMode writingMode) const

Completed in 517 milliseconds

1 2