HomeSort by relevance Sort by last modified time
    Searched defs:screenLayout (Results 1 - 25 of 57) sorted by null

1 2 3

  /cts/common/device-side/device-info/src/com/android/compatibility/common/deviceinfo/
ScreenDeviceInfo.java 52 int screenLayout = configuration.screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK;
53 String screenSize = String.format("0x%x", screenLayout);
54 switch (screenLayout) {
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowConfiguration.java 17 public int screenLayout;
23 realConfiguration.screenLayout = Configuration.SCREENLAYOUT_LONG_NO |
  /frameworks/base/core/jni/
android_content_res_Configuration.cpp 34 jfieldID screenLayout;
52 out->screenLayout = env->GetIntField(clazz, gConfigurationClassInfo.screenLayout);
82 gConfigurationClassInfo.screenLayout = GetFieldIDOrDie(env, clazz, "screenLayout", "I");
  /cts/tests/tests/dpi/src/android/dpi/cts/
ConfigurationScreenLayoutTest.java 58 int actualSize = mConfig.screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK;
59 int actualLong = mConfig.screenLayout & Configuration.SCREENLAYOUT_LONG_MASK;
70 * @return expected value of {@link Configuration#screenLayout} with the
76 // 2. For each orientation start an activity and compute what it's screenLayout value is
77 // 3. Reduce the screenLayout values if they are smaller
79 int screenLayout = Configuration.SCREENLAYOUT_SIZE_XLARGE
83 screenLayout = reduceScreenLayout(activity, screenLayout);
86 return screenLayout;
97 private int reduceScreenLayout(Context context, int screenLayout) {
    [all...]
  /cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/
DeviceInfoInstrument.java 210 int screenLayout = config.screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK;
211 String screenSize = String.format("0x%x", screenLayout);
212 switch (screenLayout) {
  /frameworks/base/services/core/java/com/android/server/am/
CompatModePackages.java 200 CompatibilityInfo ci = new CompatibilityInfo(ai, globalConfig.screenLayout,
210 final CompatibilityInfo info = new CompatibilityInfo(ai, globalConfig.screenLayout,
399 final int screenLayout = globalConfig.screenLayout;
417 CompatibilityInfo info = new CompatibilityInfo(ai, screenLayout,
  /frameworks/base/core/java/android/content/res/
Configuration.java 194 /** Constant for {@link #screenLayout}: bits that encode the size. */
196 /** Constant for {@link #screenLayout}: a {@link #SCREENLAYOUT_SIZE_MASK}
199 /** Constant for {@link #screenLayout}: a {@link #SCREENLAYOUT_SIZE_MASK}
207 /** Constant for {@link #screenLayout}: a {@link #SCREENLAYOUT_SIZE_MASK}
215 /** Constant for {@link #screenLayout}: a {@link #SCREENLAYOUT_SIZE_MASK}
223 /** Constant for {@link #screenLayout}: a {@link #SCREENLAYOUT_SIZE_MASK}
232 /** Constant for {@link #screenLayout}: bits that encode the aspect ratio. */
234 /** Constant for {@link #screenLayout}: a {@link #SCREENLAYOUT_LONG_MASK}
237 /** Constant for {@link #screenLayout}: a {@link #SCREENLAYOUT_LONG_MASK}
242 /** Constant for {@link #screenLayout}: a {@link #SCREENLAYOUT_LONG_MASK
    [all...]
  /external/robolectric-shadows/resources/src/main/java/org/robolectric/res/android/
ResTable_config.java 139 int screenLayout = 0;
151 screenLayout = UnsignedBytes.toInt(buffer.get());
179 sdkVersion, minorVersion, screenLayout, uiMode, smallestScreenWidthDp, screenWidthDp,
218 // screenLayout bits for layout direction.
433 // screenLayout bits for wide/long screen variation.
634 screenWidth, screenHeight, sdkVersion, minorVersion, screenLayout, uiMode,
641 int screenWidth, int screenHeight, int sdkVersion, int minorVersion, int screenLayout,
660 this.screenLayout = screenLayout;
681 public int screenLayout;
    [all...]
  /frameworks/base/libs/androidfw/include/androidfw/
ResourceTypes.h     [all...]
  /prebuilts/misc/common/robolectric/3.6.1/lib/
resources-3.6.1.jar 
shadows-framework-3.6.1.jar 
  /external/robolectric/v3/runtime/
shadows-core-3.1-SNAPSHOT-16.jar 
shadows-core-3.1-SNAPSHOT-17.jar 
shadows-core-3.1-SNAPSHOT-18.jar 
shadows-core-3.1-SNAPSHOT-19.jar 
shadows-core-3.1-SNAPSHOT-21.jar 
shadows-core-3.1-SNAPSHOT-22.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
shadows-core-v16-3.1.1.jar 
shadows-core-v17-3.1.1.jar 
shadows-core-v18-3.1.1.jar 
shadows-core-v19-3.1.1.jar 
shadows-core-v21-3.1.1.jar 
shadows-core-v22-3.1.1.jar 
shadows-core-v23-3.1.1.jar 
  /prebuilts/misc/common/robolectric/3.4.2/lib/
framework-3.4.2.jar 

Completed in 1367 milliseconds

1 2 3