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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderBoxRegionInfo.h 38 RenderBoxRegionInfo(LayoutUnit logicalLeft, LayoutUnit logicalWidth, bool isShifted)
39 : m_logicalLeft(logicalLeft)
44 LayoutUnit logicalLeft() const { return m_logicalLeft; }
RenderRubyText.cpp 65 void RenderRubyText::adjustInlineDirectionLineBounds(int expansionOpportunityCount, float& logicalLeft, float& logicalWidth) const
70 return RenderBlock::adjustInlineDirectionLineBounds(expansionOpportunityCount, logicalLeft, logicalWidth);
82 logicalLeft += inset / 2;
RenderRubyText.h 53 virtual void adjustInlineDirectionLineBounds(int expansionOpportunityCount, float& logicalLeft, float& logicalWidth) const;
RenderRubyBase.h 56 virtual void adjustInlineDirectionLineBounds(int expansionOpportunityCount, float& logicalLeft, float& logicalWidth) const;
RenderFieldset.cpp 71 LayoutUnit logicalLeft;
75 logicalLeft = (logicalWidth() - logicalWidthForChild(legend)) / 2;
78 logicalLeft = logicalWidth() - borderEnd() - paddingEnd() - logicalWidthForChild(legend);
81 logicalLeft = borderStart() + paddingStart() + marginStartForChild(legend);
87 logicalLeft = borderStart() + paddingStart();
93 logicalLeft = centeredWidth - centeredWidth / 2;
97 logicalLeft = logicalWidth() - borderStart() - paddingStart() - marginStartForChild(legend) - logicalWidthForChild(legend);
102 setLogicalLeftForChild(legend, logicalLeft);
InlineFlowBox.h 124 // logicalLeft = left in a horizontal line and top in a vertical line.
175 float placeBoxesInInlineDirection(float logicalLeft, bool& needsWordSpacing, GlyphOverflowAndFallbackFontsMap&);
176 float placeBoxRangeInInlineDirection(InlineBox* firstChild, InlineBox* lastChild, float& logicalLeft, float& minLogicalLeft, float& maxLogicalRight, bool& needsWordSpacing, GlyphOverflowAndFallbackFontsMap&);
177 void beginPlacingBoxRangesInInlineDirection(float logicalLeft) { setLogicalLeft(logicalLeft); }
178 void endPlacingBoxRangesInInlineDirection(float logicalLeft, float logicalRight, float minLogicalLeft, float maxLogicalRight)
180 setLogicalWidth(logicalRight - logicalLeft);
181 if (knownToHaveNoOverflow() && (minLogicalLeft < logicalLeft || maxLogicalRight > logicalRight))
225 static_cast<LayoutUnit>(logicalLeft());
256 LayoutUnit logicalLeftVisualOverflow() const { return m_overflow ? (isHorizontal() ? m_overflow->visualOverflowRect().x() : m_overflow->visualOverflowRect().y()) : static_cast<LayoutUnit>(logicalLeft()); }
    [all...]
RenderRubyBase.cpp 146 void RenderRubyBase::adjustInlineDirectionLineBounds(int expansionOpportunityCount, float& logicalLeft, float& logicalWidth) const
155 logicalLeft += inset / 2;
InlineFlowBox.cpp 359 float InlineFlowBox::placeBoxesInInlineDirection(float logicalLeft, bool& needsWordSpacing, GlyphOverflowAndFallbackFontsMap& textBoxDataMap)
362 beginPlacingBoxRangesInInlineDirection(logicalLeft);
364 float startLogicalLeft = logicalLeft;
365 logicalLeft += borderLogicalLeft() + paddingLogicalLeft();
368 float maxLogicalRight = logicalLeft;
370 placeBoxRangeInInlineDirection(firstChild(), 0, logicalLeft, minLogicalLeft, maxLogicalRight, needsWordSpacing, textBoxDataMap);
372 logicalLeft += borderLogicalRight() + paddingLogicalRight();
373 endPlacingBoxRangesInInlineDirection(startLogicalLeft, logicalLeft, minLogicalLeft, maxLogicalRight);
374 return logicalLeft;
377 float InlineFlowBox::placeBoxRangeInInlineDirection(InlineBox* firstChild, InlineBox* lastChild, float& logicalLeft, float& minLogicalLeft, float& maxLogicalRight, bool& needsWordSpacing, GlyphOverflowAndFallbackFo (…)
    [all...]
RenderBlockLineLayout.cpp 154 m_left = max<float>(m_segment->logicalLeft, m_left);
700 static void updateLogicalWidthForLeftAlignedBlock(bool isLeftToRightDirection, BidiRun* trailingSpaceRun, float& logicalLeft, float& totalLogicalWidth, float availableLogicalWidth)
713 logicalLeft -= (totalLogicalWidth - availableLogicalWidth);
716 static void updateLogicalWidthForRightAlignedBlock(bool isLeftToRightDirection, BidiRun* trailingSpaceRun, float& logicalLeft, float& totalLogicalWidth, float availableLogicalWidth)
727 logicalLeft += availableLogicalWidth - totalLogicalWidth;
735 logicalLeft += availableLogicalWidth - totalLogicalWidth;
738 static void updateLogicalWidthForCenterAlignedBlock(bool isLeftToRightDirection, BidiRun* trailingSpaceRun, float& logicalLeft, float& totalLogicalWidth, float availableLogicalWidth)
747 logicalLeft += max<float>((availableLogicalWidth - totalLogicalWidth) / 2, 0);
749 logicalLeft += totalLogicalWidth > availableLogicalWidth ? (availableLogicalWidth - totalLogicalWidth) : (availableLogicalWidth - totalLogicalWidth) / 2 - trailingSpaceWidth;
    [all...]
RenderBox.cpp 120 LayoutUnit logicalLeft = boxInfo->logicalLeft();
129 logicalLeft += currentBoxInfo->logicalLeft();
131 logicalLeft -= (currentBox->logicalWidth() - currentBoxInfo->logicalWidth()) - currentBoxInfo->logicalLeft();
142 return LayoutRect(logicalLeft, 0, logicalWidth, height());
143 return LayoutRect(0, logicalLeft, width(), logicalWidth);
    [all...]
InlineBox.h 207 // The logicalLeft position is the left edge of the line box in a horizontal line and the top edge in a vertical line.
208 float logicalLeft() const { return isHorizontal() ? m_topLeft.x() : m_topLeft.y(); }
209 float logicalRight() const { return logicalLeft() + logicalWidth(); }
217 int pixelSnappedLogicalLeft() const { return logicalLeft(); }
InlineTextBox.cpp 213 FloatPoint startingPoint = FloatPoint(logicalLeft(), selTop);
    [all...]
RenderListItem.cpp 321 LayoutUnit markerOldLogicalLeft = m_marker->logicalLeft();
326 lineOffset += o->logicalLeft();
RenderBox.h 78 LayoutUnit logicalLeft() const { return style()->isHorizontalWritingMode() ? x() : y(); }
79 LayoutUnit logicalRight() const { return logicalLeft() + logicalWidth(); }
257 LayoutUnit marginLogicalLeft() const { return m_marginBox.logicalLeft(style()->writingMode()); }
    [all...]
RenderRubyRun.cpp 296 logicalLeftOverhang = min<int>(logicalLeftOverhang, rootInlineBox->logicalLeft());
RenderBlock.h 239 RenderObject* selObj, LayoutUnit logicalLeft, LayoutUnit logicalTop, LayoutUnit logicalHeight, const PaintInfo*);
340 void setLogicalLeftForChild(RenderBox* child, LayoutUnit logicalLeft, ApplyLayoutDeltaMode = DoNotApplyLayoutDelta);
353 void updateLogicalWidthForAlignment(const ETextAlign&, BidiRun* trailingSpaceRun, float& logicalLeft, float& totalLogicalWidth, float& availableLogicalWidth, int expansionOpportunityCount);
522 virtual void adjustInlineDirectionLineBounds(int /* expansionOpportunityCount */, float& /* logicalLeft */, float& /* logicalWidth */) const { }
    [all...]
RenderBlock.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
Shape.h 42 LineSegment(float logicalLeft, float logicalRight)
43 : logicalLeft(logicalLeft)
48 float logicalLeft;
ShapeInfo.cpp 67 m_segments[i].logicalLeft += logicalLeftOffset;
ShapeOutsideInfo.cpp 52 m_leftSegmentMarginBoxDelta = m_segments[0].logicalLeft + m_renderer->marginStart();
  /external/chromium_org/third_party/WebKit/Source/core/platform/
LengthBox.cpp 36 Length LengthBox::logicalLeft(WritingMode writingMode) const
LengthBox.h 75 Length logicalLeft(WritingMode) const;
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
LayoutBoxExtent.h 58 LayoutUnit logicalLeft(WritingMode) const;
LayoutBoxExtent.cpp 46 LayoutUnit LayoutBoxExtent::logicalLeft(WritingMode writingMode) const
  /frameworks/base/services/input/
InputReader.h 57 int32_t logicalLeft;
70 logicalLeft(0), logicalTop(0), logicalRight(0), logicalBottom(0),
78 && logicalLeft == other.logicalLeft
101 logicalLeft = 0;
    [all...]

Completed in 622 milliseconds

1 2