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.java140 int mRequestedHeight = -1; field in class:SurfaceView
278 int height = mRequestedHeight >= 0
279 ? resolveSizeAndState(mRequestedHeight, heightMeasureSpec, 0)
408 int myHeight = mRequestedHeight;
608 return (mRequestedWidth != -1 || mRequestedHeight != -1);
690 if (mRequestedWidth != width || mRequestedHeight != height) {
692 mRequestedHeight = height;
698 if (mRequestedWidth != -1 || mRequestedHeight != -1) {
699 mRequestedWidth = mRequestedHeight = -1;
/frameworks/base/services/java/com/android/server/wm/
H A DWindowState.java98 int mRequestedHeight; field in class:WindowState
339 mRequestedHeight = 0;
396 h = (int)(mRequestedHeight * mGlobalScale + .5f);
398 h = mRequestedHeight;
408 if (mRequestedWidth != mLastRequestedWidth || mRequestedHeight != mLastRequestedHeight) {
410 mLastRequestedHeight = mRequestedHeight;
491 + mRequestedHeight + ") to" + " (pw=" + pw + ", ph=" + ph
996 pw.print(" h="); pw.print(mRequestedHeight);
998 if (mRequestedWidth != mLastRequestedWidth || mRequestedHeight != mLastRequestedHeight) {

Completed in 87 milliseconds