Home
last modified time | relevance | path

Searched refs:mRequestedWidth (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/core/java/com/android/internal/view/
DBaseSurfaceHolder.java42 int mRequestedWidth = -1; field in BaseSurfaceHolder
59 return mRequestedWidth; in getRequestedWidth()
116 if (mRequestedWidth != width || mRequestedHeight != height) { in setFixedSize()
117 mRequestedWidth = width; in setFixedSize()
124 if (mRequestedWidth != -1 || mRequestedHeight != -1) { in setSizeFromLayout()
125 mRequestedWidth = mRequestedHeight = -1; in setSizeFromLayout()
/frameworks/base/core/java/android/view/
DSurfaceView.java140 int mRequestedWidth = -1; field in SurfaceView
307 int width = mRequestedWidth >= 0 in onMeasure()
308 ? resolveSizeAndState(mRequestedWidth, widthMeasureSpec, 0) in onMeasure()
438 int myWidth = mRequestedWidth; in updateWindow()
625 return (mRequestedWidth != -1 || mRequestedHeight != -1); in isFixedSize()
707 if (mRequestedWidth != width || mRequestedHeight != height) {
708 mRequestedWidth = width;
715 if (mRequestedWidth != -1 || mRequestedHeight != -1) {
716 mRequestedWidth = mRequestedHeight = -1;
/frameworks/base/services/java/com/android/server/wm/
DWindowState.java98 int mRequestedWidth; field in WindowState
367 mRequestedWidth = 0; in WindowState()
417 w = (int)(mRequestedWidth * mGlobalScale + .5f); in computeFrameLw()
419 w = mRequestedWidth; in computeFrameLw()
513 + mRequestedWidth + ", mRequestedheight=" in computeFrameLw()
630 w = mRequestedWidth; in createSurfaceLocked()
1568 pw.print(prefix); pw.print("Requested w="); pw.print(mRequestedWidth); in dump()
DWindowManagerService.java2513 win.mRequestedWidth = requestedWidth; in relayoutWindow()
8165 width = w.mRequestedWidth;