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

/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DBaseCardView.java122 private int mMeasuredWidth; field in class:BaseCardView
373 mMeasuredWidth = 0;
388 mMeasuredWidth = Math.max(mMeasuredWidth, mainView.getMeasuredWidth());
393 setPivotX(mMeasuredWidth / 2);
398 int cardWidthMeasureSpec = MeasureSpec.makeMeasureSpec(mMeasuredWidth, MeasureSpec.EXACTLY);
430 setMeasuredDimension(View.resolveSizeAndState(mMeasuredWidth + getPaddingLeft()
446 mMeasuredWidth + getPaddingLeft(),
481 mMeasuredWidth + getPaddingLeft(),
497 mMeasuredWidth
[all...]
/frameworks/base/core/java/android/app/
H A DActivityTransitionCoordinator.java648 state.mMeasuredWidth = view.getMeasuredWidth();
717 int widthSpec = View.MeasureSpec.makeMeasureSpec(state.mMeasuredWidth,
1109 int mMeasuredWidth; field in class:ActivityTransitionCoordinator.SharedElementOriginalState
/frameworks/base/core/java/android/view/
H A DView.java2105 int mMeasuredWidth; field in class:View
13695 return mMeasuredWidth & MEASURED_SIZE_MASK;
13712 return mMeasuredWidth;
13751 return (mMeasuredWidth&MEASURED_STATE_MASK)
21898 output += "mMeasureWidth=" + mMeasuredWidth +
22095 mMeasureCache.put(key, ((long) mMeasuredWidth) << 32 |
22188 mMeasuredWidth = measuredWidth;
26184 stream.addProperty("measurement:measuredWidth", mMeasuredWidth);

Completed in 94 milliseconds