HomeSort by relevance Sort by last modified time
    Searched defs:logicalLeft (Results 1 - 15 of 15) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/platform/
LengthBox.cpp 36 Length LengthBox::logicalLeft(WritingMode writingMode) const
  /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; }
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);
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(); }
RenderFlowThread.cpp 241 LayoutUnit logicalLeft = style()->direction() == LTR ? LayoutUnit() : logicalWidth - regionLogicalWidth;
242 region->setRenderBoxRegionInfo(this, logicalLeft, regionLogicalWidth, false);
    [all...]
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...]
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...]
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...]
RenderLayer.cpp     [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;
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
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...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.h 421 Length logicalLeft() const { return surround->offset.logicalLeft(writingMode()); }
    [all...]

Completed in 404 milliseconds