Home
last modified time | relevance | path

Searched refs:screenLayoutSize (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/java/android/window/
DSizeConfigurationBuckets.java74 SparseIntArray screenLayoutSize = new SparseIntArray(); in SizeConfigurationBuckets() local
90 screenLayoutSize.put(curScreenLayoutSize, 0); in SizeConfigurationBuckets()
100 mScreenLayoutSize = screenLayoutSize.copyKeys(); in SizeConfigurationBuckets()
176 for (int screenLayoutSize : mScreenLayoutSize) { in crossesScreenLayoutSizeThreshold()
177 if (firstConfig.isLayoutSizeAtLeast(screenLayoutSize) in crossesScreenLayoutSizeThreshold()
178 != secondConfig.isLayoutSizeAtLeast(screenLayoutSize)) { in crossesScreenLayoutSizeThreshold()
282 @Nullable int[] screenLayoutSize, in SizeConfigurationBuckets() argument
287 this.mScreenLayoutSize = screenLayoutSize; in SizeConfigurationBuckets()
370 int[] screenLayoutSize = (flg & 0x8) == 0 ? null : in.createIntArray(); in SizeConfigurationBuckets() local
375 this.mScreenLayoutSize = screenLayoutSize; in SizeConfigurationBuckets()
/frameworks/base/core/java/android/content/res/
DConfiguration.java427 int screenLayoutSize; in reduceScreenLayout() local
438 screenLayoutSize = SCREENLAYOUT_SIZE_SMALL; in reduceScreenLayout()
446 screenLayoutSize = SCREENLAYOUT_SIZE_XLARGE; in reduceScreenLayout()
450 screenLayoutSize = SCREENLAYOUT_SIZE_LARGE; in reduceScreenLayout()
452 screenLayoutSize = SCREENLAYOUT_SIZE_NORMAL; in reduceScreenLayout()
482 if (screenLayoutSize < curSize) { in reduceScreenLayout()
483 curLayout = (curLayout&~SCREENLAYOUT_SIZE_MASK) | screenLayoutSize; in reduceScreenLayout()