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 147 int mRequestedWidth = -1;
287 int width = mRequestedWidth >= 0
288 ? resolveSizeAndState(mRequestedWidth, widthMeasureSpec, 0)
439 int myWidth = mRequestedWidth;
645 return (mRequestedWidth != -1 || mRequestedHeight != -1);
737 if (mRequestedWidth != width || mRequestedHeight != height) {
738 mRequestedWidth = width;
746 if (mRequestedWidth != -1 || mRequestedHeight != -1) {
747 mRequestedWidth = mRequestedHeight = -1;
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
WindowState.java 121 int mRequestedWidth;
478 mRequestedWidth = 0;
546 w = (int)(mRequestedWidth * mGlobalScale + .5f);
548 w = mRequestedWidth;
565 if (mRequestedWidth != mLastRequestedWidth || mRequestedHeight != mLastRequestedHeight) {
566 mLastRequestedWidth = mRequestedWidth;
663 "Resolving (mRequestedWidth="
664 + mRequestedWidth + ", mRequestedheight="
    [all...]
WindowStateAnimator.java 797 width = w.mRequestedWidth;
    [all...]
WindowManagerService.java     [all...]

Completed in 550 milliseconds