Home
last modified time | relevance | path

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

/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/android/
DBootstrapTest.java22 import static android.content.res.Configuration.SCREENLAYOUT_ROUND_MASK;
164 … assertThat(configuration.screenLayout & SCREENLAYOUT_ROUND_MASK).isEqualTo(SCREENLAYOUT_ROUND_NO); in applyQualifiers_shouldAddDefaults()
233 …assertThat(configuration.screenLayout & SCREENLAYOUT_ROUND_MASK).isEqualTo(SCREENLAYOUT_ROUND_YES); in applyQualifiers_shouldHonorSpecifiedQualifiers()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/android/
DDeviceConfig.java435 return configuration.screenLayout & Configuration.SCREENLAYOUT_ROUND_MASK; in getScreenLayoutRound()
440 (configuration.screenLayout & ~Configuration.SCREENLAYOUT_ROUND_MASK) in setScreenLayoutRound()
DConfigurationV25.java143 switch (config.screenLayout & Configuration.SCREENLAYOUT_ROUND_MASK) { in resourceQualifierString()
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/android/
DResTable_config.java461 static final int SCREENLAYOUT_ROUND_MASK = 0x03; field in ResTable_config
711 return screenLayout2 & SCREENLAYOUT_ROUND_MASK; in screenLayoutRound()
715 screenLayout2 = (byte) ((screenLayout2 & ~SCREENLAYOUT_ROUND_MASK) | value); in screenLayoutRound()