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/platform/
LengthBox.cpp 36 const Length& LengthBox::logicalLeft(WritingMode writingMode) const
  /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;
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
LayoutBoxExtent.cpp 48 LayoutUnit LayoutBoxExtent::logicalLeft(WritingMode writingMode) const
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
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);
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;
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(); }
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...]
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...]
RenderBlockFlow.cpp 395 LayoutUnit oldLeft = logicalLeft();
496 layoutPositionedObjects(relayoutChildren || isDocumentElement(), oldLeft != logicalLeft() ? ForcedLayoutAfterContainingBlockMoved : DefaultLayout);
532 void RenderBlockFlow::setLogicalLeftForChild(RenderBox* child, LayoutUnit logicalLeft)
535 child->setX(logicalLeft);
537 child->setY(logicalLeft);
    [all...]
RenderLayer.cpp     [all...]
RenderBlock.cpp     [all...]
RenderBox.cpp     [all...]
  /frameworks/native/services/inputflinger/
InputReader.h 58 int32_t logicalLeft;
71 logicalLeft(0), logicalTop(0), logicalRight(0), logicalBottom(0),
79 && logicalLeft == other.logicalLeft
102 logicalLeft = 0;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.h 444 const Length& logicalLeft() const { return surround->offset.logicalLeft(writingMode()); }
    [all...]

Completed in 316 milliseconds