HomeSort by relevance Sort by last modified time
    Searched refs:mRequestedWidth (Results 1 - 5 of 5) sorted by null

  /frameworks/base/core/java/com/android/internal/view/
BaseSurfaceHolder.java 42 int mRequestedWidth = -1;
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/
SurfaceView.java 144 int mRequestedWidth = -1;
280 int width = mRequestedWidth >= 0
281 ? resolveSizeAndState(mRequestedWidth, widthMeasureSpec, 0)
431 int myWidth = mRequestedWidth;
634 return (mRequestedWidth != -1 || mRequestedHeight != -1);
717 if (mRequestedWidth != width || mRequestedHeight != height) {
718 mRequestedWidth = width;
725 if (mRequestedWidth != -1 || mRequestedHeight != -1) {
726 mRequestedWidth = mRequestedHeight = -1;
  /frameworks/base/services/java/com/android/server/wm/
WindowState.java 102 int mRequestedWidth;
353 mRequestedWidth = 0;
405 w = (int)(mRequestedWidth * mGlobalScale + .5f);
407 w = mRequestedWidth;
424 if (mRequestedWidth != mLastRequestedWidth || mRequestedHeight != mLastRequestedHeight) {
425 mLastRequestedWidth = mRequestedWidth;
506 Slog.v(TAG, "Resolving (mRequestedWidth="
507 + mRequestedWidth + ", mRequestedheight="
    [all...]
WindowStateAnimator.java 652 w = mWin.mRequestedWidth;
    [all...]
WindowManagerService.java     [all...]

Completed in 63 milliseconds