/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/ |
Shape.h | 43 LineSegment(float logicalLeft, float logicalRight) 45 , logicalRight(logicalRight) 50 float logicalRight;
|
ShapeOutsideInfo.cpp | 76 LayoutUnit rawRightMarginBoxDelta = segments.last().logicalRight - containingBlock->logicalWidthForChild(m_renderer) - containingBlock->marginEndForChild(m_renderer);
|
BoxShapeTest.cpp | 60 EXPECT_EQ(expectedRight, result[0].logicalRight); \
|
ShapeInfo.cpp | 93 segments[i].logicalRight += logicalLeftOffset();
|
ShapeInsideInfo.cpp | 68 m_segments[i].logicalRight -= lineOffset.width();
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
LengthBox.cpp | 41 Length LengthBox::logicalRight(WritingMode writingMode) const
|
LengthBox.h | 78 Length logicalRight(WritingMode) const;
|
/external/chromium_org/third_party/WebKit/Source/platform/geometry/ |
LayoutBoxExtent.h | 60 LayoutUnit logicalRight(WritingMode) const;
|
LayoutBoxExtent.cpp | 53 LayoutUnit LayoutBoxExtent::logicalRight(WritingMode writingMode) const
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
InlineFlowBox.h | 178 void endPlacingBoxRangesInInlineDirection(float logicalLeft, float logicalRight, float minLogicalLeft, float maxLogicalRight) 180 setLogicalWidth(logicalRight - logicalLeft); 181 if (knownToHaveNoOverflow() && (minLogicalLeft < logicalLeft || maxLogicalRight > logicalRight)) 230 static_cast<LayoutUnit>(ceilf(logicalRight())); 257 LayoutUnit logicalRightVisualOverflow() const { return m_overflow ? (isHorizontal() ? m_overflow->visualOverflowRect().maxX() : m_overflow->visualOverflowRect().maxY()) : static_cast<LayoutUnit>(ceilf(logicalRight())); }
|
InlineBox.h | 208 float logicalRight() const { return logicalLeft() + logicalWidth(); } 217 int pixelSnappedLogicalRight() const { return ceilf(logicalRight()); }
|
RootInlineBox.cpp | 440 lastBox->parent()->renderer(), lastBox->logicalRight(), selTop, selHeight, paintInfo)); 451 LayoutUnit lastLogicalLeft = firstBox->logicalRight(); 464 lastLogicalLeft = box->logicalRight(); 635 if (leftPosition >= lastLeaf->logicalRight() && !lastLeaf->renderer()->isListMarker() && (!onlyEditableLeaves || isEditableLeaf(lastLeaf))) 644 if (leftPosition < leaf->logicalRight()) 706 lineLayoutOverflow.shiftMaxXEdgeTo(max<LayoutUnit>(lineLayoutOverflow.maxX(), logicalRight() + endPadding)); 711 lineLayoutOverflow.shiftMaxYEdgeTo(max<LayoutUnit>(lineLayoutOverflow.maxY(), logicalRight() + endPadding)); [all...] |
FloatingObjects.cpp | 153 LayoutUnit logicalRight = m_renderer->logicalRightForFloat(floatingObject); 154 if (logicalRight > m_offset) { 155 m_offset = logicalRight;
|
RenderBox.cpp | [all...] |
LineWidth.cpp | 63 m_right = std::min<float>(m_segment->logicalRight, m_right);
|
RenderRubyRun.cpp | 298 logicalRightOverhang = min<int>(logicalRightOverhang, logicalWidth - rootInlineBox->logicalRight());
|
InlineTextBox.cpp | 225 if (r.x() > logicalRight()) 227 else if (r.maxX() > logicalRight()) 228 logicalWidth = logicalRight() - r.x(); 281 bool ltrEllipsisWithinBox = flowIsLTR && (ellipsisX < logicalRight()); 293 ellipsisX = ltr ? logicalLeft() + visibleBoxWidth : logicalRight() - visibleBoxWidth; 321 return logicalRight() - widthOfVisibleText - ellipsisWidth; [all...] |
RenderBox.h | 84 LayoutUnit logicalRight() const { return logicalLeft() + logicalWidth(); } 269 LayoutUnit marginLogicalRight() const { return m_marginBox.logicalRight(style()->writingMode()); } [all...] |
RenderText.cpp | 501 if (pointLineDirection < box->logicalRight()) { 677 float rootRight = box->root()->logicalRight(); [all...] |
RenderBlockLineLayout.cpp | 649 float logicalRight = min<float>(segments[0].logicalRight, lineLogicalRight); 658 logicalRight = min<float>(segments[i].logicalRight, lineLogicalRight); 660 availableLogicalWidth = logicalRight - logicalLeft; [all...] |
RenderBlock.cpp | [all...] |
RenderInline.cpp | [all...] |
/frameworks/base/services/input/ |
InputReader.h | 59 int32_t logicalRight; 70 logicalLeft(0), logicalTop(0), logicalRight(0), logicalBottom(0), 80 && logicalRight == other.logicalRight 103 logicalRight = width; [all...] |
/frameworks/base/services/jni/ |
com_android_server_input_InputManagerService.cpp | 324 viewport.logicalRight - viewport.logicalLeft, 428 v.logicalRight - v.logicalLeft, [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
RenderStyle.h | 443 Length logicalRight() const { return surround->offset.logicalRight(writingMode()); } [all...] |