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 45 LineSegment(float logicalLeft, float logicalRight)
46 : logicalLeft(logicalLeft)
51 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 72 LayoutUnit logicalLeft;
76 logicalLeft = (logicalWidth() - logicalWidthForChild(legend)) / 2;
79 logicalLeft = logicalWidth() - borderEnd() - paddingEnd() - logicalWidthForChild(legend);
82 logicalLeft = borderStart() + paddingStart() + marginStartForChild(legend);
88 logicalLeft = borderStart() + paddingStart();
94 logicalLeft = centeredWidth - centeredWidth / 2;
98 logicalLeft = logicalWidth() - borderStart() - paddingStart() - marginStartForChild(legend) - logicalWidthForChild(legend);
103 setLogicalLeftForChild(legend, logicalLeft);
FloatingObjects.cpp 453 LayoutUnit logicalLeft = m_renderer->logicalLeftForFloat(floatingObject);
454 if (logicalLeft < m_offset) {
455 m_offset = logicalLeft;
517 LayoutUnit logicalLeft = m_renderer->logicalLeftForFloat(floatingObject);
522 logicalLeft += shapeOutside->leftMarginBoxDelta();
524 if (logicalLeft < m_offset) {
525 m_offset = logicalLeft;
InlineBox.h 209 // The logicalLeft position is the left edge of the line box in a horizontal line and the top edge in a vertical line.
210 float logicalLeft() const { return isHorizontal() ? m_topLeft.x() : m_topLeft.y(); }
211 float logicalRight() const { return logicalLeft() + logicalWidth(); }
219 int pixelSnappedLogicalLeft() const { return logicalLeft(); }
InlineFlowBox.cpp 361 float InlineFlowBox::placeBoxesInInlineDirection(float logicalLeft, bool& needsWordSpacing, GlyphOverflowAndFallbackFontsMap& textBoxDataMap)
364 beginPlacingBoxRangesInInlineDirection(logicalLeft);
366 float startLogicalLeft = logicalLeft;
367 logicalLeft += borderLogicalLeft() + paddingLogicalLeft();
370 float maxLogicalRight = logicalLeft;
372 placeBoxRangeInInlineDirection(firstChild(), 0, logicalLeft, minLogicalLeft, maxLogicalRight, needsWordSpacing, textBoxDataMap);
374 logicalLeft += borderLogicalRight() + paddingLogicalRight();
375 endPlacingBoxRangesInInlineDirection(startLogicalLeft, logicalLeft, minLogicalLeft, maxLogicalRight);
376 return logicalLeft;
379 float InlineFlowBox::placeBoxRangeInInlineDirection(InlineBox* firstChild, InlineBox* lastChild, float& logicalLeft, float& minLogicalLeft, float& maxLogicalRight, bool& needsWordSpacing, GlyphOverflowAndFallbackFo (…)
    [all...]
RenderBox.h 108 LayoutUnit logicalLeft() const { return style()->isHorizontalWritingMode() ? x() : y(); }
109 LayoutUnit logicalRight() const { return logicalLeft() + logicalWidth(); }
291 LayoutUnit marginLogicalLeft() const { return m_marginBox.logicalLeft(style()->writingMode()); }
    [all...]
RenderBlockFlow.cpp 340 LayoutUnit oldLeft = logicalLeft();
441 layoutPositionedObjects(relayoutChildren || isDocumentElement(), oldLeft != logicalLeft() ? ForcedLayoutAfterContainingBlockMoved : DefaultLayout);
470 void RenderBlockFlow::setLogicalLeftForChild(RenderBox* child, LayoutUnit logicalLeft, ApplyLayoutDeltaMode applyDelta)
474 view()->addLayoutDelta(LayoutSize(child->x() - logicalLeft, 0));
475 child->setX(logicalLeft);
478 view()->addLayoutDelta(LayoutSize(0, child->y() - logicalLeft));
479 child->setY(logicalLeft);
    [all...]
RenderBlockLineLayout.cpp 348 static void updateLogicalWidthForLeftAlignedBlock(bool isLeftToRightDirection, BidiRun* trailingSpaceRun, float& logicalLeft, float& totalLogicalWidth, float availableLogicalWidth)
361 logicalLeft -= (totalLogicalWidth - availableLogicalWidth);
364 static void updateLogicalWidthForRightAlignedBlock(bool isLeftToRightDirection, BidiRun* trailingSpaceRun, float& logicalLeft, float& totalLogicalWidth, float availableLogicalWidth)
375 logicalLeft += availableLogicalWidth - totalLogicalWidth;
383 logicalLeft += availableLogicalWidth - totalLogicalWidth;
386 static void updateLogicalWidthForCenterAlignedBlock(bool isLeftToRightDirection, BidiRun* trailingSpaceRun, float& logicalLeft, float& totalLogicalWidth, float availableLogicalWidth)
395 logicalLeft += max<float>((availableLogicalWidth - totalLogicalWidth) / 2, 0);
397 logicalLeft += totalLogicalWidth > availableLogicalWidth ? (availableLogicalWidth - totalLogicalWidth) : (availableLogicalWidth - totalLogicalWidth) / 2 - trailingSpaceWidth;
535 void RenderBlockFlow::updateLogicalWidthForAlignment(const ETextAlign& textAlign, const RootInlineBox* rootInlineBox, BidiRun* trailingSpaceRun, float& logicalLeft, float& totalLogicalWidth, float& availableLogicalWidth, unsigned expansionOpportunityCount)
550 updateLogicalWidthForLeftAlignedBlock(style()->isLeftToRightDirection(), trailingSpaceRun, logicalLeft, totalLogicalWidth, availableLogicalWidth)
    [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 460 const Length& logicalLeft() const { return surround->offset.logicalLeft(writingMode()); }
    [all...]

Completed in 3252 milliseconds