Searched refs:mRight (Results 1 - 25 of 34) sorted by relevance

12

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DFixedSizeDrawable.java29 int mRight; field in class:FixedSizeDrawable
39 mRight = r;
44 mDrawable.setBounds(mLeft, mTop, mRight, mBottom);
48 mDrawable.setBounds(mLeft, mTop, mRight, mBottom);
/frameworks/base/core/tests/coretests/src/android/view/
H A DGlobalFocusChangeTest.java31 private View mRight; field in class:GlobalFocusChangeTest
42 mRight = mActivity.findViewById(R.id.right);
57 assertTrue(mRight.isFocused());
60 assertSame(mRight, mActivity.mNewFocus);
/frameworks/base/core/java/android/widget/
H A DRelativeLayout.java483 width = Math.max(width, params.mRight);
496 right = Math.max(right, params.mRight + params.rightMargin);
515 right = Math.max(right, params.mRight + params.rightMargin);
547 params.mRight = params.mLeft + childWidth;
602 params.mRight += horizontalOffset;
657 params.mRight, params.width,
671 params.mRight, params.width,
769 if (params.mLeft < 0 && params.mRight >= 0) {
771 params.mLeft = params.mRight - child.getMeasuredWidth();
772 } else if (params.mLeft >= 0 && params.mRight <
1175 private int mLeft, mTop, mRight, mBottom; field in class:RelativeLayout.LayoutParams
[all...]
H A DNumberPicker.java1407 float x = (mRight - mLeft) / 2;
1415 mVirtualButtonPressedDrawable.setBounds(0, 0, mRight, mTopSelectionDividerTop);
1420 mVirtualButtonPressedDrawable.setBounds(0, mBottomSelectionDividerBottom, mRight,
1447 mSelectionDivider.setBounds(0, topOfTopDivider, mRight, bottomOfTopDivider);
1453 mSelectionDivider.setBounds(0, topOfBottomDivider, mRight, bottomOfBottomDivider);
2005 invalidate(0, mBottomSelectionDividerBottom, mRight, mBottom);
2009 invalidate(0, 0, mRight, mTopSelectionDividerTop);
2034 invalidate(0, mBottomSelectionDividerBottom, mRight, mBottom);
2038 invalidate(0, 0, mRight, mTopSelectionDividerTop);
2050 invalidate(0, mBottomSelectionDividerBottom, mRight, mBotto
[all...]
H A DSlidingDrawer.java453 (!mExpanded && left > mBottomOffset + mRight - mLeft -
604 handle.offsetLeftAndRight(mBottomOffset + mRight - mLeft -
612 } else if (deltaX > mBottomOffset + mRight - mLeft - mHandleWidth - left) {
613 deltaX = mBottomOffset + mRight - mLeft - mHandleWidth - left;
644 content.measure(MeasureSpec.makeMeasureSpec(mRight - mLeft, MeasureSpec.EXACTLY),
650 int width = mRight - mLeft - childWidth - mTopOffset;
H A DGallery.java627 int childrenWidth = mRight - mLeft - mSpinnerPadding.left - mSpinnerPadding.right;
713 curRightEdge = mRight - mLeft - mPaddingRight;
742 curRightEdge = mRight - mLeft - mPaddingRight;
769 int galleryRight = mRight - mLeft - mPaddingRight;
800 int galleryRight = mRight - mLeft - mPaddingRight;
H A DAnalogClock.java173 int availableWidth = mRight - mLeft;
H A DTextView.java2843 mRight - mLeft - getCompoundPaddingLeft() -
4711 scrollX += (mRight - mLeft - mPaddingRight - drawables.mDrawableSizeRight);
4716 final int hspace = mRight - mLeft - compoundPaddingRight - compoundPaddingLeft;
4723 final int hspace = mRight - mLeft - compoundPaddingRight - compoundPaddingLeft;
4886 final int right = mRight;
5012 final int width = mRight - mLeft;
5766 int width = mRight - mLeft - getCompoundPaddingLeft() - getCompoundPaddingRight();
6411 (mRight - mLeft - getCompoundPaddingLeft() - getCompoundPaddingRight() > 0)) {
6424 mRight - mLeft - getCompoundPaddingLeft() - getCompoundPaddingRight(),
6484 int hspace = mRight
[all...]
H A DLinearLayout.java1455 final int width = mRight - mLeft;
1566 childLeft = mPaddingLeft + mRight - mLeft - mTotalLength;
1571 childLeft = mPaddingLeft + (mRight - mLeft - mTotalLength) / 2;
H A DFrameLayout.java477 final int w = mRight-mLeft;
H A DHorizontalScrollView.java191 return (int) (MAX_SCROLL_FACTOR * (mRight - mLeft));
1471 final int maxJump = mRight - mLeft;
H A DAdapterView.java747 this.onLayout(false, mLeft, mTop, mRight, mBottom);
H A DExpandableListView.java246 scrollX + mRight - mLeft - mPaddingRight,
/frameworks/base/core/java/android/app/
H A DFragmentBreadCrumbs.java195 childRight = mRight - mLeft - mPaddingRight;
200 childLeft = mPaddingLeft + (mRight - mLeft - child.getMeasuredWidth()) / 2;
215 if (childRight > mRight - mLeft - mPaddingRight) {
216 childRight = mRight - mLeft - mPaddingRight;
/frameworks/base/libs/hwui/
H A DDisplayListRenderer.h307 mWidth = mRight - mLeft;
325 if (right != mRight) {
326 mRight = right;
327 mWidth = mRight - mLeft;
348 mWidth = mRight - mLeft;
357 if (left != mLeft || top != mTop || right != mRight || bottom != mBottom) {
360 mRight = right;
362 mWidth = mRight - mLeft;
373 mRight += offset;
521 int mLeft, mTop, mRight, mBotto member in class:android::uirenderer::DisplayList
[all...]
H A DDisplayListRenderer.cpp283 mRight = 0;
774 (float) 0, (float) 0, (float) mRight - mLeft, (float) mBottom - mTop,
780 (float) mRight - mLeft, (float) mBottom - mTop);
848 (float) 0, (float) 0, (float) mRight - mLeft, (float) mBottom - mTop,
850 renderer.saveLayerAlpha(0, 0, mRight - mLeft, mBottom - mTop,
856 (float) mRight - mLeft, (float) mBottom - mTop);
857 renderer.clipRect(0, 0, mRight - mLeft, mBottom - mTop,
/frameworks/av/media/libstagefright/
H A DMetaData.cpp86 r.mRight = right;
181 *right = r->mRight;
317 r->mLeft, r->mTop, r->mRight, r->mBottom);
/frameworks/base/core/java/android/view/
H A DView.java2765 protected int mRight; field in class:View
3775 out.append(mRight);
4927 position.set(0, 0, mRight - mLeft, mBottom - mTop);
8435 if ((mParent != null) && (mBottom > mTop) && (mRight > mLeft)) {
8677 return mRight - mLeft;
8702 outRect.right = mScrollX + (mRight - mLeft);
8830 if ((mRight - mLeft) != info.mPrevWidth || (mBottom - mTop) != info.mPrevHeight) {
8831 info.mPrevWidth = mRight - mLeft;
9431 invalidate(0, yLoc, mRight - mLeft, mBottom - minTop);
9438 int width = mRight
[all...]
H A DViewGroup.java2781 mScrollX + mRight - mLeft - mPaddingRight,
4113 if (!dirty.intersect(0, 0, mRight - left, mBottom - top)) {
4135 dirty.set(0, 0, mRight - mLeft, mBottom - mTop);
4138 dirty.union(0, 0, mRight - mLeft, mBottom - mTop);
4209 dirty.intersect(0, 0, mRight - mLeft, mBottom - mTop)) {
4269 rect.intersect(0, 0, p.mRight - p.mLeft, p.mBottom - p.mTop);
4274 rect.intersect(0, 0, p.mRight - p.mLeft, p.mBottom - p.mTop);
4354 if (rect.intersect(0, 0, mRight - mLeft, mBottom - mTop)) {
/frameworks/av/include/media/stagefright/
H A DMetaData.h255 int32_t mLeft, mTop, mRight, mBottom; member in struct:android::MetaData::Rect
/frameworks/av/include/media/stagefright/foundation/
H A DAMessage.h121 int32_t mLeft, mTop, mRight, mBottom; member in struct:android::AMessage::Rect
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DRecentApplicationsBackground.java63 if (mLeft != left || mRight != right || mTop != top || mBottom != bottom) {
/frameworks/av/media/libstagefright/foundation/
H A DAMessage.cpp196 item->u.rectValue.mRight = right;
246 *right = item->u.rectValue.mRight;
431 item.u.rectValue.mRight,
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DRecentsHorizontalScrollView.java248 int right = left + mRight - mLeft - mPaddingRight - paddingLeft;
H A DRecentsVerticalScrollView.java257 int right = left + mRight - mLeft - mPaddingRight - paddingLeft;

Completed in 392 milliseconds

12