HomeSort by relevance Sort by last modified time
    Searched defs:mRequestedWidth (Results 1 - 3 of 3) 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 139 int mRequestedWidth = -1;
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/
WindowState.java 97 int mRequestedWidth;
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="
    [all...]

Completed in 43 milliseconds