Searched refs:mRequestedWidth (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/com/android/internal/view/
H A DBaseSurfaceHolder.java42 int mRequestedWidth = -1; field in class:BaseSurfaceHolder
59 return mRequestedWidth;
116 if (mRequestedWidth != width || mRequestedHeight != height) {
117 mRequestedWidth = width;
124 if (mRequestedWidth != -1 || mRequestedHeight != -1) {
125 mRequestedWidth = mRequestedHeight = -1;
/frameworks/base/core/java/android/view/
H A DSurfaceView.java139 int mRequestedWidth = -1; field in class:SurfaceView
275 int width = mRequestedWidth >= 0
276 ? resolveSizeAndState(mRequestedWidth, widthMeasureSpec, 0)
406 int myWidth = mRequestedWidth;
608 return (mRequestedWidth != -1 || mRequestedHeight != -1);
690 if (mRequestedWidth != width || mRequestedHeight != height) {
691 mRequestedWidth = width;
698 if (mRequestedWidth != -1 || mRequestedHeight != -1) {
699 mRequestedWidth = mRequestedHeight = -1;
/frameworks/base/services/java/com/android/server/wm/
H A DWindowState.java97 int mRequestedWidth; field in class:WindowState
338 mRequestedWidth = 0;
389 w = (int)(mRequestedWidth * mGlobalScale + .5f);
391 w = mRequestedWidth;
408 if (mRequestedWidth != mLastRequestedWidth || mRequestedHeight != mLastRequestedHeight) {
409 mLastRequestedWidth = mRequestedWidth;
489 Slog.v(TAG, "Resolving (mRequestedWidth="
490 + mRequestedWidth + ", mRequestedheight="
995 pw.print(prefix); pw.print("Requested w="); pw.print(mRequestedWidth);
998 if (mRequestedWidth !
[all...]
H A DWindowStateAnimator.java613 w = mWin.mRequestedWidth;
960 w.mSystemDecorRect.set(0, 0, w.mRequestedWidth, w.mRequestedHeight);
1012 width = w.mRequestedWidth;
H A DWindowManagerService.java2717 if (win.mRequestedWidth != requestedWidth
2720 win.mRequestedWidth = requestedWidth;

Completed in 518 milliseconds