Home
last modified time | relevance | path

Searched refs:smallestSize (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/util/
DDefaultDisplay.java125 public final Point smallestSize; field in DefaultDisplay.Info
140 smallestSize = new Point(); in Info()
143 display.getCurrentSizeRange(smallestSize, largestSize); in Info()
157 if (!smallestSize.equals(info.smallestSize) || !largestSize.equals(info.largestSize)) { in hasDifferentSize()
159 smallestSize, largestSize, info.smallestSize, info.largestSize)); in hasDifferentSize()
DConfigMonitor.java66 mSmallestSize = new Point(displayInfo.smallestSize); in ConfigMonitor()
96 mTmpPoint1.set(info.smallestSize.x, info.smallestSize.y); in onDisplayInfoChanged()
/packages/apps/Launcher3/src/com/android/launcher3/
DInvariantDeviceProfile.java192 Point smallestSize = new Point(displayInfo.smallestSize); in initGrid() local
196 float minWidthDps = Utilities.dpiFromPx(Math.min(smallestSize.x, smallestSize.y), in initGrid()
231 originalIDP.landscapeProfile = new DeviceProfile(context, this, null, smallestSize, in initGrid()
234 originalIDP.portraitProfile = new DeviceProfile(context, this, null, smallestSize, in initGrid()
252 landscapeProfile = new DeviceProfile(context, this, originalIDP, smallestSize, in initGrid()
255 portraitProfile = new DeviceProfile(context, this, originalIDP, smallestSize, in initGrid()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/
DQuickstepAppTransitionManagerImpl.java446 float smallestSize = Math.min(windowTargetBounds.height(), windowTargetBounds.width()); in getOpeningWindowAnimators() local
447 float maxScaleX = smallestSize / bounds.width(); in getOpeningWindowAnimators()
448 float maxScaleY = smallestSize / bounds.height(); in getOpeningWindowAnimators()