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

/frameworks/base/core/java/com/android/internal/view/
H A DBaseSurfaceHolder.java43 int mRequestedHeight = -1; field in class:BaseSurfaceHolder
63 return mRequestedHeight;
116 if (mRequestedWidth != width || mRequestedHeight != height) {
118 mRequestedHeight = height;
124 if (mRequestedWidth != -1 || mRequestedHeight != -1) {
125 mRequestedWidth = mRequestedHeight = -1;
/frameworks/base/core/java/android/view/
H A DSurfaceView.java147 int mRequestedHeight = -1; field in class:SurfaceView
284 int height = mRequestedHeight >= 0
285 ? resolveSizeAndState(mRequestedHeight, heightMeasureSpec, 0)
434 int myHeight = mRequestedHeight;
637 return (mRequestedWidth != -1 || mRequestedHeight != -1);
728 if (mRequestedWidth != width || mRequestedHeight != height) {
730 mRequestedHeight = height;
737 if (mRequestedWidth != -1 || mRequestedHeight != -1) {
738 mRequestedWidth = mRequestedHeight = -1;
/frameworks/base/services/java/com/android/server/wm/
H A DWindowState.java115 int mRequestedHeight; field in class:WindowState
433 mRequestedHeight = 0;
507 h = (int)(mRequestedHeight * mGlobalScale + .5f);
509 h = mRequestedHeight;
519 if (mRequestedWidth != mLastRequestedWidth || mRequestedHeight != mLastRequestedHeight) {
521 mLastRequestedHeight = mRequestedHeight;
604 + mRequestedHeight + ") to" + " (pw=" + pw + ", ph=" + ph
1314 pw.print(" h="); pw.print(mRequestedHeight);
1316 if (mRequestedWidth != mLastRequestedWidth || mRequestedHeight != mLastRequestedHeight) {

Completed in 143 milliseconds