Home
last modified time | relevance | path

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

/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/android/
DBootstrapTest.java19 import static android.content.res.Configuration.SCREENLAYOUT_LONG_MASK;
163 assertThat(configuration.screenLayout & SCREENLAYOUT_LONG_MASK).isEqualTo(SCREENLAYOUT_LONG_NO); in applyQualifiers_shouldAddDefaults()
232 … assertThat(configuration.screenLayout & SCREENLAYOUT_LONG_MASK).isEqualTo(SCREENLAYOUT_LONG_YES); in applyQualifiers_shouldHonorSpecifiedQualifiers()
257 assertThat(configuration.screenLayout & Configuration.SCREENLAYOUT_LONG_MASK) in applyQualifiers_longShouldMakeScreenTaller()
267 assertThat(configuration.screenLayout & Configuration.SCREENLAYOUT_LONG_MASK) in whenScreenRationGreatherThan175Percent_applyQualifiers_ShouldSetLong()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/android/
DDeviceConfig.java283 if ((configuration.screenLayout & Configuration.SCREENLAYOUT_LONG_MASK) in applyRules()
415 return configuration.screenLayout & Configuration.SCREENLAYOUT_LONG_MASK; in getScreenLayoutLong()
420 (configuration.screenLayout & ~Configuration.SCREENLAYOUT_LONG_MASK) in setScreenLayoutLong()
DConfigurationV25.java132 switch (config.screenLayout & Configuration.SCREENLAYOUT_LONG_MASK) { in resourceQualifierString()
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/android/
DResTable_config.java442 static final int SCREENLAYOUT_LONG_MASK = 0x30; field in ResTable_config
703 return screenLayout & SCREENLAYOUT_LONG_MASK; in screenLayoutLong()
707 screenLayout = (screenLayout & ~SCREENLAYOUT_LONG_MASK) | value; in screenLayoutLong()