Searched defs:mTop (Results 1 - 12 of 12) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/widget/layout/table/
H A DVerticalGravityTest.java36 private View mTop; field in class:VerticalGravityTest
52 mTop = activity.findViewById(R.id.cell_top);
62 assertNotNull(mTop);
69 ViewAsserts.assertTopAligned(mReference1, mTop);
/frameworks/av/include/media/stagefright/foundation/
H A DAMessage.h124 int32_t mLeft, mTop, mRight, mBottom; member in struct:android::AMessage::Rect
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyguardUserSwitcherScrim.java44 private int mTop; field in class:KeyguardUserSwitcherScrim
60 float height = (mTop + bounds.height()) * OUTER_EXTENT;
61 canvas.translate(0, -mTop);
93 mTop = top;
/frameworks/minikin/include/minikin/
H A DMinikinFont.h59 float mLeft, mTop, mRight, mBottom; member in struct:android::MinikinRect
61 return mLeft == mRight || mTop == mBottom;
65 mTop = r.mTop;
71 mTop += dy;
76 mLeft = mTop = mRight = mBottom = 0;
/frameworks/base/core/java/android/transition/
H A DChangeBounds.java470 private int mTop; field in class:ChangeBounds.ViewBounds
483 mTop = Math.round(topLeft.y);
500 mView.setLeftTopRightBottom(mLeft, mTop, mRight, mBottom);
/frameworks/base/core/java/android/view/
H A DSurfaceView.java160 int mTop = -1; field in class:SurfaceView
451 || mLeft != mLocation[0] || mTop != mLocation[1]
458 + " top=" + (mTop != mLocation[1]));
463 mTop = mLocation[1];
472 mLayout.y = mTop;
H A DView.java3030 protected int mTop; field in class:View
4284 out.append(mTop);
5036 position.offset(child.mLeft, child.mTop);
5578 position.set(0, 0, mRight - mLeft, mBottom - mTop);
5584 position.offset(mLeft, mTop);
5603 position.offset(parentView.mLeft, parentView.mTop);
9712 if ((mParent != null) && (mBottom > mTop) && (mRight > mLeft)) {
10010 return mBottom - mTop;
10026 outRect.bottom = mScrollY + (mBottom - mTop);
10645 return mTop;
[all...]
/frameworks/av/include/media/stagefright/
H A DMetaData.h276 int32_t mLeft, mTop, mRight, mBottom; member in struct:android::MetaData::Rect
/frameworks/base/core/java/android/app/
H A DActivityTransitionCoordinator.java602 state.mTop = view.getTop();
679 view.layout(state.mLeft, state.mTop, state.mRight, state.mBottom);
960 int mTop; field in class:ActivityTransitionCoordinator.SharedElementOriginalState
/frameworks/base/core/java/android/widget/
H A DRelativeLayout.java512 top = Math.min(top, params.mTop - params.topMargin);
531 top = Math.min(top, params.mTop - params.topMargin);
594 params.mTop = height - mPaddingBottom - childHeight;
595 params.mBottom = params.mTop + childHeight;
623 params.mTop += verticalOffset;
655 int offset = anchorParams.mTop + anchorBaseline;
660 int height = params.mBottom - params.mTop;
661 params.mTop = offset;
662 params.mBottom = params.mTop + height;
670 if (params.mTop < l
1230 private int mLeft, mTop, mRight, mBottom; field in class:RelativeLayout.LayoutParams
[all...]
/frameworks/base/libs/hwui/
H A DRenderProperties.h397 if (RP_SET(mPrimitiveFields.mTop, top)) {
398 mPrimitiveFields.mHeight = mPrimitiveFields.mBottom - mPrimitiveFields.mTop;
408 return mPrimitiveFields.mTop;
428 mPrimitiveFields.mHeight = mPrimitiveFields.mBottom - mPrimitiveFields.mTop;
448 if (left != mPrimitiveFields.mLeft || top != mPrimitiveFields.mTop
451 mPrimitiveFields.mTop = top;
455 mPrimitiveFields.mHeight = mPrimitiveFields.mBottom - mPrimitiveFields.mTop;
475 mPrimitiveFields.mTop += offset;
595 int mLeft, mTop, mRight, mBottom; member in struct:android::uirenderer::RenderProperties::PrimitiveFields
H A DDisplayListOp.h1109 : DrawOp(paint), mLeft(left), mTop(top), mRight(right), mBottom(bottom),
1113 return renderer.drawRoundRect(*mLeft, *mTop, *mRight, *mBottom,
1119 *mLeft, *mTop, *mRight, *mBottom, *mRx, *mRy);
1126 float* mTop; member in class:android::uirenderer::DrawRoundRectPropsOp

Completed in 5279 milliseconds