Searched refs:originalIDP (Results 1 – 2 of 2) sorted by relevance
/packages/apps/Launcher3/src/com/android/launcher3/ |
D | InvariantDeviceProfile.java | 230 InvariantDeviceProfile originalIDP = new InvariantDeviceProfile(this); in initGrid() local 231 originalIDP.landscapeProfile = new DeviceProfile(context, this, null, smallestSize, in initGrid() 234 originalIDP.portraitProfile = new DeviceProfile(context, this, null, smallestSize, in initGrid() 241 landscapeProfile = originalIDP.landscapeProfile; in initGrid() 242 portraitProfile = originalIDP.portraitProfile; in initGrid() 250 numAllAppsColumns = originalIDP.numAllAppsColumns; in initGrid() 252 landscapeProfile = new DeviceProfile(context, this, originalIDP, smallestSize, in initGrid() 255 portraitProfile = new DeviceProfile(context, this, originalIDP, smallestSize, in initGrid()
|
D | DeviceProfile.java | 141 InvariantDeviceProfile originalIDP, Point minSize, Point maxSize, in DeviceProfile() argument 238 if (originalIDP != null) { in DeviceProfile() 242 ? originalIDP.landscapeProfile in DeviceProfile() 243 : originalIDP.portraitProfile; in DeviceProfile()
|