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

  /frameworks/base/services/tests/servicestests/src/com/android/server/wm/
WindowConfigurationTests.java 142 final Rect appBounds = sWm.computeNewConfiguration(
145 assertEquals(appBounds.left, 0);
146 assertEquals(appBounds.top, 0);
149 assertEquals(appBounds.width(), info.appWidth);
150 assertEquals(appBounds.height(), info.appHeight);
  /platform_testing/libraries/system-helpers/sysui-helper/src/android/system/helpers/
OverviewHelper.java 225 Rect appBounds = appArea.getVisibleBounds();
227 mDevice.drag(xCoordinate, appBounds.bottom, xCoordinate,
  /platform_testing/tests/functional/overviewtests/src/com/android/overview/functional/
OverviewHelper.java 189 Rect appBounds = appArea.getVisibleBounds();
191 mDevice.drag(xCoordinate, appBounds.bottom, xCoordinate,
  /frameworks/base/core/java/android/view/
DisplayInfo.java 583 final Rect appBounds = configuration != null
585 width = appBounds != null ? appBounds.width() : width;
586 height = appBounds != null ? appBounds.height() : height;
  /frameworks/base/services/core/java/com/android/server/am/
ActivityRecord.java     [all...]

Completed in 132 milliseconds