HomeSort by relevance Sort by last modified time
    Searched defs:appHeight (Results 1 - 7 of 7) sorted by null

  /frameworks/base/services/tests/servicestests/src/com/android/server/wm/
AppBoundsTests.java 73 info.appHeight = 768;
82 assertEquals(config.appBounds.height(), info.appHeight);
  /frameworks/base/core/java/android/view/
DisplayInfo.java 76 public int appHeight;
86 * The smallest value of {@link #appHeight} that an application is likely to encounter,
100 * The largest value of {@link #appHeight} that an application is likely to encounter,
286 && appHeight == other.appHeight
327 appHeight = other.appHeight;
364 appHeight = source.readInt();
410 dest.writeInt(appHeight);
512 displayAdjustments.getConfiguration(), appWidth, appHeight);
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
DockedStackDividerController.java 236 final int appHeight = mService.mPolicy.getNonDecorDisplayHeight(dw, dh, rotation,
243 topInset + appHeight /*bottom*/);
    [all...]
AppTransition.java 664 final int appHeight = containingFrame.height();
668 float scaleH = mTmpRect.height() / (float) appHeight;
    [all...]
WindowStateAnimator.java 252 mAnimDy = displayInfo.appHeight;
392 displayInfo.appWidth, displayInfo.appHeight);
395 mAnimDy = displayInfo.appHeight;
    [all...]
DisplayContent.java     [all...]
  /cts/hostsidetests/services/activityandwindowmanager/util/src/android/server/cts/
WindowManagerState.java 882 final int appHeight = Integer.valueOf(matcher.group(6));
883 mAppRect.setBounds(0, 0, appWidth, appHeight);
    [all...]

Completed in 744 milliseconds