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

/frameworks/base/core/java/com/android/internal/view/
H A DBaseSurfaceHolder.java42 int mRequestedWidth = -1; field in class:BaseSurfaceHolder
59 return mRequestedWidth;
116 if (mRequestedWidth != width || mRequestedHeight != height) {
117 mRequestedWidth = width;
124 if (mRequestedWidth != -1 || mRequestedHeight != -1) {
125 mRequestedWidth = mRequestedHeight = -1;
/frameworks/base/core/java/android/view/
H A DSurfaceView.java168 int mRequestedWidth = -1; field in class:SurfaceView
300 int width = mRequestedWidth >= 0
301 ? resolveSizeAndState(mRequestedWidth, widthMeasureSpec, 0)
452 int myWidth = mRequestedWidth;
797 return (mRequestedWidth != -1 || mRequestedHeight != -1);
890 if (mRequestedWidth != width || mRequestedHeight != height) {
891 mRequestedWidth = width;
899 if (mRequestedWidth != -1 || mRequestedHeight != -1) {
900 mRequestedWidth = mRequestedHeight = -1;
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowState.java181 int mRequestedWidth; field in class:WindowState
631 mRequestedWidth = 0;
775 if (mRequestedWidth != mLastRequestedWidth || mRequestedHeight != mLastRequestedHeight) {
776 mLastRequestedWidth = mRequestedWidth;
932 "Resolving (mRequestedWidth="
933 + mRequestedWidth + ", mRequestedheight="
1716 if ((mRequestedWidth != requestedWidth || mRequestedHeight != requestedHeight)) {
1718 mRequestedWidth = requestedWidth;
2535 pw.print(prefix); pw.print("Requested w="); pw.print(mRequestedWidth);
2538 if (mRequestedWidth !
[all...]

Completed in 2045 milliseconds