/frameworks/minikin/include/minikin/ |
D | MinikinFont.h | 62 float mLeft, mTop, mRight, mBottom; member 64 return mLeft == mRight || mTop == mBottom; in isEmpty() 70 mBottom = r.mBottom; in set() 76 mBottom += dy; in offset() 79 mLeft = mTop = mRight = mBottom = 0; in setEmpty()
|
/frameworks/base/core/tests/coretests/src/android/widget/layout/table/ |
D | VerticalGravityTest.java | 38 private View mBottom; field in VerticalGravityTest 54 mBottom = activity.findViewById(R.id.cell_bottom); in setUp() 64 assertNotNull(mBottom); in testSetUpConditions() 80 ViewAsserts.assertBottomAligned(mReference3, mBottom); in testBottomGravity()
|
/frameworks/base/tests/SurfaceComposition/src/android/surfacecomposition/ |
D | CustomLayout.java | 28 private int mLeft, mTop, mRight, mBottom; field in CustomLayout.LayoutParams 35 mBottom = bottom; in LayoutParams() 45 child.layout(lp.mLeft, lp.mTop, lp.mRight, lp.mBottom); in onLayout()
|
/frameworks/base/libs/hwui/pipeline/skia/ |
D | AnimatedDrawables.h | 37 , mBottom(bottom) in AnimatedRoundRect() 44 return SkRect::MakeLTRB(mLeft->value, mTop->value, mRight->value, mBottom->value); in onGetBounds() 47 SkRect rect = SkRect::MakeLTRB(mLeft->value, mTop->value, mRight->value, mBottom->value); in onDraw() 55 sp<uirenderer::CanvasPropertyPrimitive> mBottom; variable
|
/frameworks/base/libs/hwui/ |
D | RenderProperties.h | 429 mPrimitiveFields.mHeight = mPrimitiveFields.mBottom - mPrimitiveFields.mTop; in setTop() 458 if (RP_SET(mPrimitiveFields.mBottom, bottom)) { in setBottom() 459 mPrimitiveFields.mHeight = mPrimitiveFields.mBottom - mPrimitiveFields.mTop; in setBottom() 469 return mPrimitiveFields.mBottom; in getBottom() 480 || right != mPrimitiveFields.mRight || bottom != mPrimitiveFields.mBottom) { in setLeftTopRightBottom() 484 mPrimitiveFields.mBottom = bottom; in setLeftTopRightBottom() 486 mPrimitiveFields.mHeight = mPrimitiveFields.mBottom - mPrimitiveFields.mTop; in setLeftTopRightBottom() 507 mPrimitiveFields.mBottom += offset; in offsetTopBottom() 635 int mLeft = 0, mTop = 0, mRight = 0, mBottom = 0; member
|
/frameworks/minikin/tests/unittest/ |
D | LayoutTest.cpp | 87 EXPECT_EQ(10.0f, rect.mBottom); in TEST_F() 106 EXPECT_EQ(10.0f, rect.mBottom); in TEST_F() 125 EXPECT_EQ(10.0f, rect.mBottom); in TEST_F() 144 EXPECT_EQ(10.0f, rect.mBottom); in TEST_F() 178 EXPECT_EQ(10.0f, rect.mBottom); in TEST_F() 197 EXPECT_EQ(10.0f, rect.mBottom); in TEST_F() 220 EXPECT_EQ(10.0f, rect.mBottom); in TEST_F() 241 EXPECT_EQ(10.0f, rect.mBottom); in TEST_F() 277 EXPECT_EQ(10.0f, rect.mBottom); in TEST_F() 296 EXPECT_EQ(10.0f, rect.mBottom); in TEST_F() [all …]
|
/frameworks/layoutlib/bridge/src/android/view/ |
D | RenderNode_Delegate.java | 55 private int mBottom; field in RenderNode_Delegate 222 if (delegate != null && delegate.mBottom != bottom) { in nSetBottom() 223 delegate.mBottom = bottom; in nSetBottom() 234 .mRight != right || delegate.mBottom != bottom)) { in nSetLeftTopRightBottom() 238 delegate.mBottom = bottom; in nSetLeftTopRightBottom() 292 return (delegate.mBottom - delegate.mTop) / 2.0f; in nGetPivotY()
|
/frameworks/base/core/java/android/widget/ |
D | RelativeLayout.java | 502 height = Math.max(height, params.mBottom); in onMeasure() 504 height = Math.max(height, params.mBottom + params.bottomMargin); in onMeasure() 515 bottom = Math.max(bottom, params.mBottom + params.bottomMargin); in onMeasure() 590 params.mBottom = params.mTop + childHeight; in onMeasure() 619 params.mBottom += verticalOffset; in onMeasure() 672 params.mBottom, params.height, in measureChild() 863 if (params.mTop == VALUE_NOT_SET && params.mBottom != VALUE_NOT_SET) { in positionChildVertical() 865 params.mTop = params.mBottom - child.getMeasuredHeight(); in positionChildVertical() 866 } else if (params.mTop != VALUE_NOT_SET && params.mBottom == VALUE_NOT_SET) { in positionChildVertical() 868 params.mBottom = params.mTop + child.getMeasuredHeight(); in positionChildVertical() [all …]
|
D | SlidingDrawer.java | 466 (!mExpanded && top > mBottomOffset + mBottom - mTop - in onTouchEvent() 591 handle.offsetTopAndBottom(mBottomOffset + mBottom - mTop - in moveHandle() 599 } else if (deltaY > mBottomOffset + mBottom - mTop - mHandleHeight - top) { in moveHandle() 600 deltaY = mBottomOffset + mBottom - mTop - mHandleHeight - top; in moveHandle() 660 int height = mBottom - mTop - childHeight - mTopOffset; in prepareContent() 669 MeasureSpec.makeMeasureSpec(mBottom - mTop, MeasureSpec.EXACTLY)); in prepareContent()
|
D | NumberPicker.java | 1606 mBottom); in onDraw() 1791 float totalTextGapHeight = (mBottom - mTop) - totalTextHeight; in initializeSelectorWheel() 1806 setFadingEdgeLength((mBottom - mTop - mTextSize) / 2); in initializeFadingEdges() 2223 invalidate(0, mBottomSelectionDividerBottom, mRight, mBottom); in cancel() 2252 invalidate(0, mBottomSelectionDividerBottom, mRight, mBottom); in run() 2268 invalidate(0, mBottomSelectionDividerBottom, mRight, mBottom); in run() 2393 mScrollX + (mRight - mLeft), mScrollY + (mBottom - mTop)); in createAccessibilityNodeInfo() 2408 mScrollX + (mRight - mLeft), mScrollY + (mBottom - mTop)); in createAccessibilityNodeInfo() 2544 invalidate(0, mBottomSelectionDividerBottom, mRight, mBottom); in performAction() 2553 invalidate(0, mBottomSelectionDividerBottom, mRight, mBottom); in performAction()
|
D | ListView.java | 274 return (int) (MAX_SCROLL_FACTOR * (mBottom - mTop)); in getMaxScrollAmount() 778 int end = (mBottom - mTop); in fillDown() 1539 final int end = (mBottom - mTop) - mListPadding.bottom; in correctTooHigh() 1590 final int end = (mBottom - mTop) - mListPadding.bottom; in correctTooLow() 1644 final int childrenBottom = mBottom - mTop - mListPadding.bottom; in layoutChildren() 3222 final int listBottom = mBottom - mTop - mListPadding.bottom; 3468 final int listBottom = mBottom - mTop - effectivePaddingBottom + mScrollY; 3517 final int overFooterBottom = mBottom + mScrollY; 3571 final int absListBottom = mBottom;
|
/frameworks/base/core/java/android/text/ |
D | BoringLayout.java | 192 mBottom = spacing; in init() 302 return mBottom; in getHeight() 315 return mBottom; in getLineTop() 386 c.drawText(mDirect, 0, mBottom - mDesc, mPaint); in draw() 403 /* package */ int mBottom, mDesc; // for Direct field in BoringLayout
|
/frameworks/base/libs/hwui/hwui/ |
D | Canvas.cpp | 136 bounds.mRight, bounds.mBottom, totalAdvance); in operator ()() 143 bounds.mRight, bounds.mBottom, totalAdvance); in operator ()() 147 bounds.mRight, bounds.mBottom, totalAdvance); in operator ()()
|
D | MinikinSkia.cpp | 67 bounds->mBottom = skBounds.fBottom; in GetBounds()
|
/frameworks/minikin/tests/util/ |
D | MinikinFontForTest.cpp | 69 bounds->mBottom = 10.0f; in GetBounds()
|
/frameworks/base/core/java/android/view/ |
D | ViewOverlay.java | 141 mBottom = hostView.getHeight(); in OverlayViewGroup() 143 mRenderNode.setLeftTopRightBottom(0, 0, mRight, mBottom); in OverlayViewGroup()
|
D | View.java | 3852 protected int mBottom; field in View 5522 out.append(mBottom); 7372 position.set(0, 0, mRight - mLeft, mBottom - mTop); 7569 mRight - mLeft, mBottom - mTop); 13334 if ((mParent != null) && (mBottom > mTop) && (mRight > mLeft)) { 13668 return mBottom - mTop; 13684 outRect.bottom = mScrollY + (mBottom - mTop); 14385 invalidate(0, yLoc, mRight - mLeft, mBottom - minTop); 14393 int oldHeight = mBottom - mTop; 14398 sizeChange(width, mBottom - mTop, width, oldHeight); [all …]
|
/frameworks/av/media/libstagefright/foundation/ |
D | MetaData.cpp | 88 r.mBottom = bottom; in setRect() 186 *bottom = r->mBottom; in findRect() 345 r->mLeft, r->mTop, r->mRight, r->mBottom); in asString()
|
D | AMessage.cpp | 339 item->u.rectValue.mBottom = bottom; in setRect() 389 *bottom = item->u.rectValue.mBottom; in findRect() 626 item.u.rectValue.mBottom); in debugString() 868 item.u.rectValue.mRight, item.u.rectValue.mBottom); in changesFrom()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/ |
D | ScreenshotSelectorView.java | 77 canvas.drawRect(mLeft, mTop, mRight, mBottom, mPaintBackground); in draw()
|
/frameworks/base/core/java/android/transition/ |
D | ChangeBounds.java | 474 private int mBottom; field in ChangeBounds.ViewBounds 494 mBottom = Math.round(bottomRight.y); in setBottomRight() 502 mView.setLeftTopRightBottom(mLeft, mTop, mRight, mBottom); in setLeftTopRightBottom()
|
/frameworks/support/transition/src/android/support/transition/ |
D | ChangeBounds.java | 462 private int mBottom; field in ChangeBounds.ViewBounds 482 mBottom = Math.round(bottomRight.y); in setBottomRight() 490 ViewUtils.setLeftTopRightBottom(mView, mLeft, mTop, mRight, mBottom); in setLeftTopRightBottom()
|
/frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/ |
D | AMessage.h | 201 int32_t mLeft, mTop, mRight, mBottom; member
|
/frameworks/av/media/libstagefright/include/media/stagefright/ |
D | MetaData.h | 327 int32_t mLeft, mTop, mRight, mBottom; member
|
/frameworks/minikin/libs/minikin/ |
D | Layout.cpp | 226 mBottom = std::max(mBottom, r.mBottom); in join() 992 glyphBounds.mBottom = in doLayoutRun()
|