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 146 int mRequestedWidth = -1;
281 int width = mRequestedWidth >= 0
282 ? resolveSizeAndState(mRequestedWidth, widthMeasureSpec, 0)
432 int myWidth = mRequestedWidth;
637 return (mRequestedWidth != -1 || mRequestedHeight != -1);
728 if (mRequestedWidth != width || mRequestedHeight != height) {
729 mRequestedWidth = width;
737 if (mRequestedWidth != -1 || mRequestedHeight != -1) {
738 mRequestedWidth = mRequestedHeight = -1;
    [all...]
  /frameworks/base/services/java/com/android/server/wm/
WindowState.java 114 int mRequestedWidth;
432 mRequestedWidth = 0;
500 w = (int)(mRequestedWidth * mGlobalScale + .5f);
502 w = mRequestedWidth;
519 if (mRequestedWidth != mLastRequestedWidth || mRequestedHeight != mLastRequestedHeight) {
520 mLastRequestedWidth = mRequestedWidth;
602 "Resolving (mRequestedWidth="
603 + mRequestedWidth + ", mRequestedheight="
    [all...]

Completed in 86 milliseconds