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

  /packages/apps/Camera2/src/com/android/camera/
CaptureLayoutHelper.java 46 private int mWindowWidth = 0;
105 if (mWindowWidth == 0 || mWindowHeight == 0) {
108 mPositionConfiguration = getPositionConfiguration(mWindowWidth, mWindowHeight, mAspectRatio,
153 return new RectF(0, 0, mWindowWidth, mWindowHeight);
178 if (mWindowHeight > mWindowWidth) {
225 mWindowWidth = width;
  /packages/apps/TV/src/com/android/tv/ui/
TvViewUiManager.java 72 private int mWindowWidth;
142 mWindowWidth = size.x;
163 if (mWindowWidth != windowWidth || mWindowHeight != windowHeight) {
164 mWindowWidth = windowWidth;
488 videoDisplayAspectRatio = (float) mWindowWidth / mWindowHeight;
504 int availableAreaWidth = mWindowWidth - mTvViewStartMargin - mTvViewEndMargin;
505 int availableAreaHeight = availableAreaWidth * mWindowHeight / mWindowWidth;
585 lp.width = mWindowWidth - startMargin - endMargin;
  /packages/apps/TV/src/com/android/tv/dvr/ui/playback/
DvrPlaybackOverlayFragment.java 88 private int mWindowWidth;
135 mWindowWidth = size.x;
137 mWindowAspectRatio = mAppliedAspectRatio = (float) mWindowWidth / mWindowHeight;
282 mWindowWidth = windowWidth;
284 mWindowAspectRatio = (float) mWindowWidth / mWindowHeight;
390 int newPadding = (mWindowWidth - Math.round(mWindowHeight * videoAspectRatio)) / 2;
393 int newPadding = (mWindowHeight - Math.round(mWindowWidth / videoAspectRatio)) / 2;

Completed in 115 milliseconds