Home
last modified time | relevance | path

Searched refs:mRequestedHeight (Results 1 – 6 of 6) 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/services/tests/servicestests/src/com/android/server/wm/
DWindowFrameTests.java162 w.mRequestedHeight = 100; in testLayoutInFullscreenTaskInsets()
198 w.mRequestedHeight = 300; in testLayoutInFullscreenTaskNoInsets()
208 w.mRequestedHeight = -1; in testLayoutInFullscreenTaskNoInsets()
218 w.mRequestedHeight = 1200; in testLayoutInFullscreenTaskNoInsets()
226 w.mRequestedHeight = 1000; in testLayoutInFullscreenTaskNoInsets()
235 w.mRequestedHeight = 300; in testLayoutInFullscreenTaskNoInsets()
349 w.mRequestedHeight = logicalHeight / 2; in testCalculatePolicyCrop()
/frameworks/base/core/java/android/view/
DSurfaceView.java155 int mRequestedHeight = -1; field in SurfaceView
334 int height = mRequestedHeight >= 0 in onMeasure()
335 ? resolveSizeAndState(mRequestedHeight, heightMeasureSpec, 0) in onMeasure()
490 int myHeight = mRequestedHeight; in updateSurface()
917 return (mRequestedWidth != -1 || mRequestedHeight != -1); in isFixedSize()
952 if (mRequestedWidth != width || mRequestedHeight != height) {
954 mRequestedHeight = height;
961 if (mRequestedWidth != -1 || mRequestedHeight != -1) {
962 mRequestedWidth = mRequestedHeight = -1;
/frameworks/base/services/core/java/com/android/server/wm/
DWindowState.java225 int mRequestedHeight; field in WindowState
662 mRequestedHeight = 0; in WindowState()
812 if (mRequestedWidth != mLastRequestedWidth || mRequestedHeight != mLastRequestedHeight) { in computeFrameLw()
814 mLastRequestedHeight = mRequestedHeight; in computeFrameLw()
977 + mRequestedHeight + ") to" + " (pw=" + pw + ", ph=" + ph in computeFrameLw()
2203 if ((mRequestedWidth != requestedWidth || mRequestedHeight != requestedHeight)) { in setRequestedSize()
2206 mRequestedHeight = requestedHeight; in setRequestedSize()
3292 pw.print(" h="); pw.print(mRequestedHeight); in dump()
3294 if (mRequestedWidth != mLastRequestedWidth || mRequestedHeight != mLastRequestedHeight) { in dump()
3547 h = (int)(mRequestedHeight * mGlobalScale + .5f); in applyGravityAndUpdateFrame()
[all …]
DWindowStateAnimator.java746 mTmpSize.bottom = mTmpSize.top + w.mRequestedHeight; in calculateSurfaceBounds()
DWindowManagerService.java1965 win.setWindowScale(win.mRequestedWidth, win.mRequestedHeight); in relayoutWindow()