Searched defs:mMeasuredWidth (Results 1 - 3 of 3) sorted by relevance

/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DBaseCardView.java121 private int mMeasuredWidth; field in class:BaseCardView
351 mMeasuredWidth = 0;
366 mMeasuredWidth = Math.max(mMeasuredWidth, mainView.getMeasuredWidth());
371 setPivotX(mMeasuredWidth / 2);
376 int cardWidthMeasureSpec = MeasureSpec.makeMeasureSpec(mMeasuredWidth, MeasureSpec.EXACTLY);
408 setMeasuredDimension(View.resolveSizeAndState(mMeasuredWidth + getPaddingLeft() +
424 mMeasuredWidth + getPaddingLeft(),
459 mMeasuredWidth + getPaddingLeft(),
475 mMeasuredWidth
[all...]
/frameworks/base/core/java/android/app/
H A DActivityTransitionCoordinator.java587 state.mMeasuredWidth = view.getMeasuredWidth();
656 int widthSpec = View.MeasureSpec.makeMeasureSpec(state.mMeasuredWidth,
1012 int mMeasuredWidth; field in class:ActivityTransitionCoordinator.SharedElementOriginalState
/frameworks/base/core/java/android/view/
H A DView.java1686 int mMeasuredWidth; field in class:View
11818 return mMeasuredWidth & MEASURED_SIZE_MASK;
11835 return mMeasuredWidth;
11874 return (mMeasuredWidth&MEASURED_STATE_MASK)
19684 output += "mMeasureWidth=" + mMeasuredWidth +
19881 mMeasureCache.put(key, ((long) mMeasuredWidth) << 32 |
19974 mMeasuredWidth = measuredWidth;
23833 stream.addProperty("measurement:measuredWidth", mMeasuredWidth);

Completed in 205 milliseconds