Home
last modified time | relevance | path

Searched refs:mRequestedHeight (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/core/java/com/android/internal/view/
DBaseSurfaceHolder.java43 int mRequestedHeight = -1; field in BaseSurfaceHolder
63 return mRequestedHeight; in getRequestedHeight()
116 if (mRequestedWidth != width || mRequestedHeight != height) { in setFixedSize()
118 mRequestedHeight = height; in setFixedSize()
124 if (mRequestedWidth != -1 || mRequestedHeight != -1) { in setSizeFromLayout()
125 mRequestedWidth = mRequestedHeight = -1; in setSizeFromLayout()
/frameworks/base/core/java/android/view/
DSurfaceView.java169 int mRequestedHeight = -1; field in SurfaceView
303 int height = mRequestedHeight >= 0 in onMeasure()
304 ? resolveSizeAndState(mRequestedHeight, heightMeasureSpec, 0) in onMeasure()
454 int myHeight = mRequestedHeight; in updateWindow()
797 return (mRequestedWidth != -1 || mRequestedHeight != -1); in isFixedSize()
890 if (mRequestedWidth != width || mRequestedHeight != height) {
892 mRequestedHeight = height;
899 if (mRequestedWidth != -1 || mRequestedHeight != -1) {
900 mRequestedWidth = mRequestedHeight = -1;
/frameworks/base/services/core/java/com/android/server/wm/
DWindowState.java182 int mRequestedHeight; field in WindowState
632 mRequestedHeight = 0; in WindowState()
775 if (mRequestedWidth != mLastRequestedWidth || mRequestedHeight != mLastRequestedHeight) { in computeFrameLw()
777 mLastRequestedHeight = mRequestedHeight; in computeFrameLw()
934 + mRequestedHeight + ") to" + " (pw=" + pw + ", ph=" + ph in computeFrameLw()
1716 if ((mRequestedWidth != requestedWidth || mRequestedHeight != requestedHeight)) { in setRequestedSize()
1719 mRequestedHeight = requestedHeight; in setRequestedSize()
2536 pw.print(" h="); pw.print(mRequestedHeight); in dump()
2538 if (mRequestedWidth != mLastRequestedWidth || mRequestedHeight != mLastRequestedHeight) { in dump()
2791 h = (int)(mRequestedHeight * mGlobalScale + .5f); in applyGravityAndUpdateFrame()
[all …]
DWindowStateAnimator.java798 mTmpSize.bottom = mTmpSize.top + w.mRequestedHeight; in calculateSurfaceBounds()
DWindowManagerService.java2710 win.setWindowScale(win.mRequestedWidth, win.mRequestedHeight); in repositionChild()
2815 win.setWindowScale(win.mRequestedWidth, win.mRequestedHeight); in relayoutWindow()