Home
last modified time | relevance | path

Searched refs:mBottom (Results 1 – 25 of 41) sorted by relevance

12

/frameworks/minikin/include/minikin/
DMinikinFont.h62 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/
DVerticalGravityTest.java38 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/
DCustomLayout.java28 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/
DAnimatedDrawables.h37 , 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/
DRenderProperties.h429 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/
DLayoutTest.cpp87 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/
DRenderNode_Delegate.java55 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/
DRelativeLayout.java502 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 …]
DSlidingDrawer.java466 (!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()
DNumberPicker.java1606 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()
DListView.java274 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/
DBoringLayout.java192 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/
DCanvas.cpp136 bounds.mRight, bounds.mBottom, totalAdvance); in operator ()()
143 bounds.mRight, bounds.mBottom, totalAdvance); in operator ()()
147 bounds.mRight, bounds.mBottom, totalAdvance); in operator ()()
DMinikinSkia.cpp67 bounds->mBottom = skBounds.fBottom; in GetBounds()
/frameworks/minikin/tests/util/
DMinikinFontForTest.cpp69 bounds->mBottom = 10.0f; in GetBounds()
/frameworks/base/core/java/android/view/
DViewOverlay.java141 mBottom = hostView.getHeight(); in OverlayViewGroup()
143 mRenderNode.setLeftTopRightBottom(0, 0, mRight, mBottom); in OverlayViewGroup()
DView.java3852 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/
DMetaData.cpp88 r.mBottom = bottom; in setRect()
186 *bottom = r->mBottom; in findRect()
345 r->mLeft, r->mTop, r->mRight, r->mBottom); in asString()
DAMessage.cpp339 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/
DScreenshotSelectorView.java77 canvas.drawRect(mLeft, mTop, mRight, mBottom, mPaintBackground); in draw()
/frameworks/base/core/java/android/transition/
DChangeBounds.java474 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/
DChangeBounds.java462 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/
DAMessage.h201 int32_t mLeft, mTop, mRight, mBottom; member
/frameworks/av/media/libstagefright/include/media/stagefright/
DMetaData.h327 int32_t mLeft, mTop, mRight, mBottom; member
/frameworks/minikin/libs/minikin/
DLayout.cpp226 mBottom = std::max(mBottom, r.mBottom); in join()
992 glyphBounds.mBottom = in doLayoutRun()

12