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/wmtests/src/com/android/server/wm/
DWindowFrameTests.java172 w.mRequestedHeight = 100; in testLayoutInFullscreenTaskInsets()
211 w.mRequestedHeight = 300; in testLayoutInFullscreenTaskNoInsets()
221 w.mRequestedHeight = -1; in testLayoutInFullscreenTaskNoInsets()
231 w.mRequestedHeight = 1200; in testLayoutInFullscreenTaskNoInsets()
239 w.mRequestedHeight = 1000; in testLayoutInFullscreenTaskNoInsets()
248 w.mRequestedHeight = 300; in testLayoutInFullscreenTaskNoInsets()
355 w.mRequestedHeight = logicalHeight / 2; in testCalculatePolicyCrop()
/frameworks/base/core/java/android/view/
DSurfaceView.java186 int mRequestedHeight = -1; field in SurfaceView
550 int height = mRequestedHeight >= 0 in onMeasure()
551 ? resolveSizeAndState(mRequestedHeight, heightMeasureSpec, 0) in onMeasure()
921 int myHeight = mRequestedHeight; in updateSurface()
1416 return (mRequestedWidth != -1 || mRequestedHeight != -1); in isFixedSize()
1468 if (mRequestedWidth != width || mRequestedHeight != height) {
1470 mRequestedHeight = height;
1477 if (mRequestedWidth != -1 || mRequestedHeight != -1) {
1478 mRequestedWidth = mRequestedHeight = -1;
/frameworks/base/services/core/java/com/android/server/wm/
DWindowState.java362 int mRequestedHeight; field in WindowState
940 mRequestedHeight = 0; in WindowState()
1153 if (mRequestedWidth != mLastRequestedWidth || mRequestedHeight != mLastRequestedHeight) { in computeFrameLw()
1155 mLastRequestedHeight = mRequestedHeight; in computeFrameLw()
1258 + mRequestedHeight + ") to" + " (pw=" + pw + ", ph=" + ph in computeFrameLw()
2683 if ((mRequestedWidth != requestedWidth || mRequestedHeight != requestedHeight)) { in setRequestedSize()
2686 mRequestedHeight = requestedHeight; in setRequestedSize()
3923 proto.write(REQUESTED_HEIGHT, mRequestedHeight); in dumpDebug()
3970 + " h=" + mRequestedHeight in dump()
3972 if (mRequestedWidth != mLastRequestedWidth || mRequestedHeight != mLastRequestedHeight) { in dump()
[all …]
DWindowStateAnimator.java564 outSize.bottom = w.mRequestedHeight; in calculateSurfaceBounds()
DWindowManagerService.java2210 win.setWindowScale(win.mRequestedWidth, win.mRequestedHeight); in relayoutWindow()