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

  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/android/internal/
DisplayConfig.java 83 public int appHeight;
93 * The smallest value of {@link #appHeight} that an application is likely to encounter,
107 * The largest value of {@link #appHeight} that an application is likely to encounter,
274 appHeight = other.appHeight;
331 && appHeight == other.appHeight
372 appHeight = other.appHeight;
412 other.appHeight = appHeight
    [all...]
  /frameworks/base/core/java/android/view/
DisplayInfo.java 83 public int appHeight;
93 * The smallest value of {@link #appHeight} that an application is likely to encounter,
107 * The largest value of {@link #appHeight} that an application is likely to encounter,
300 && appHeight == other.appHeight
342 appHeight = other.appHeight;
380 appHeight = source.readInt();
427 dest.writeInt(appHeight);
530 displayAdjustments.getConfiguration(), appWidth, appHeight);
    [all...]
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowDisplayManagerGlobal.java 51 int min = Math.min(displayInfo.appWidth, displayInfo.appHeight);
52 int max = Math.max(displayInfo.appWidth, displayInfo.appHeight);
ShadowDisplayManager.java 59 displayInfo.appHeight = heightPx;
88 int smallest = Math.min(displayInfo.appWidth, displayInfo.appHeight);
89 int largest = Math.max(displayInfo.appWidth, displayInfo.appHeight);
ShadowDisplay.java 301 di -> di.appHeight = height);
  /frameworks/base/services/core/java/com/android/server/wm/
AppTransition.java 669 final int appHeight = containingFrame.height();
673 float scaleH = mTmpRect.height() / (float) appHeight;
716 a.initialize(appWidth, appHeight, appWidth, appHeight);
    [all...]
DockedStackDividerController.java 287 final int appHeight = mService.mPolicy.getNonDecorDisplayHeight(dw, dh, rotation,
294 leftInset + appWidth /*right*/, topInset + appHeight /*bottom*/);
    [all...]
DisplayContent.java     [all...]
AppWindowToken.java     [all...]
WindowState.java     [all...]
  /frameworks/base/services/core/java/com/android/server/display/
LogicalDisplay.java 136 mInfo.appHeight = mOverrideDisplayInfo.appHeight;
259 mBaseDisplayInfo.appHeight = deviceInfo.height;
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowDisplayManagerTest.java 81 assertThat(di.appHeight).isEqualTo(200);
176 displayInfo.appHeight = height;
  /frameworks/base/services/tests/servicestests/src/com/android/server/wm/
WindowConfigurationTests.java 140 info.appHeight = 768;
150 assertEquals(appBounds.height(), info.appHeight);
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/android/
BootstrapTest.java 77 assertThat(displayInfo.appHeight).isEqualTo(640);
111 assertThat(displayInfo.appHeight).isEqualTo(720);
  /cts/tests/tests/keystore/src/android/server/am/
WindowManagerState.java 444 mAppRect.set(0, 0, infoProto.appWidth, infoProto.appHeight);
  /cts/tests/framework/base/activitymanager/util/src/android/server/am/
WindowManagerState.java 714 mAppRect.set(0, 0, infoProto.appWidth, infoProto.appHeight);
    [all...]

Completed in 436 milliseconds