/frameworks/base/core/java/android/content/res/ |
D | Configuration.java | 334 public int screenLayout; field in Configuration 515 int cur = screenLayout&SCREENLAYOUT_SIZE_MASK; in isLayoutSizeAtLeast() 970 screenLayout = o.screenLayout; in setTo() 1010 int layoutDir = (screenLayout&SCREENLAYOUT_LAYOUTDIR_MASK); in toString() 1038 switch ((screenLayout&SCREENLAYOUT_SIZE_MASK)) { in toString() 1045 sb.append(screenLayout&SCREENLAYOUT_SIZE_MASK); break; in toString() 1047 switch ((screenLayout&SCREENLAYOUT_LONG_MASK)) { in toString() 1052 sb.append(screenLayout&SCREENLAYOUT_LONG_MASK); break; in toString() 1170 protoOutputStream.write(SCREEN_LAYOUT, screenLayout); in dumpDebug() 1297 screenLayout = protoInputStream.readInt(SCREEN_LAYOUT); in readFromProto() [all …]
|
D | CompatibilityInfo.java | 116 public CompatibilityInfo(ApplicationInfo appInfo, int screenLayout, int sw, in CompatibilityInfo() argument 118 this(appInfo, screenLayout, sw, forceCompat, 1f); in CompatibilityInfo() 121 public CompatibilityInfo(ApplicationInfo appInfo, int screenLayout, int sw, in CompatibilityInfo() argument 227 switch (screenLayout&Configuration.SCREENLAYOUT_SIZE_MASK) { in CompatibilityInfo() 246 if ((screenLayout&Configuration.SCREENLAYOUT_COMPAT_NEEDED) != 0) { in CompatibilityInfo() 540 inoutConfig.screenLayout = in applyToConfiguration() 541 (inoutConfig.screenLayout&~Configuration.SCREENLAYOUT_SIZE_MASK) in applyToConfiguration()
|
D | AssetManager.java | 1441 int screenHeightDp, int screenLayout, int uiMode, int colorMode, int majorVersion) { in setConfiguration() argument 1446 smallestScreenWidthDp, screenWidthDp, screenHeightDp, screenLayout, uiMode, in setConfiguration() 1527 int smallestScreenWidthDp, int screenWidthDp, int screenHeightDp, int screenLayout, in nativeSetConfiguration() argument
|
D | ResourcesImpl.java | 461 mConfiguration.screenLayout, mConfiguration.uiMode, in updateConfiguration()
|
/frameworks/base/libs/androidfw/ |
D | ConfigDescription.cpp | 99 out->screenLayout = in parseLayoutDirection() 100 (out->screenLayout & ~ResTable_config::MASK_LAYOUTDIR) | in parseLayoutDirection() 105 out->screenLayout = in parseLayoutDirection() 106 (out->screenLayout & ~ResTable_config::MASK_LAYOUTDIR) | in parseLayoutDirection() 111 out->screenLayout = in parseLayoutDirection() 112 (out->screenLayout & ~ResTable_config::MASK_LAYOUTDIR) | in parseLayoutDirection() 123 out->screenLayout = in parseScreenLayoutSize() 124 (out->screenLayout & ~ResTable_config::MASK_SCREENSIZE) | in parseScreenLayoutSize() 129 out->screenLayout = in parseScreenLayoutSize() 130 (out->screenLayout & ~ResTable_config::MASK_SCREENSIZE) | in parseScreenLayoutSize() [all …]
|
D | ResourceTypes.cpp | 2107 if (screenLayout != o.screenLayout) { in compare() 2108 return (screenLayout > o.screenLayout) ? 1 : -1; in compare() 2144 if ((screenLayout & MASK_LAYOUTDIR) != (o.screenLayout & MASK_LAYOUTDIR)) { in compareLogical() 2145 return (screenLayout & MASK_LAYOUTDIR) < (o.screenLayout & MASK_LAYOUTDIR) ? -1 : 1; in compareLogical() 2174 if (screenLayout != o.screenLayout) { in compareLogical() 2175 return screenLayout < o.screenLayout ? -1 : 1; in compareLogical() 2205 …if ((screenLayout & MASK_LAYOUTDIR) != (o.screenLayout & MASK_LAYOUTDIR)) diffs |= CONFIG_LAYOUTDI… in diff() 2206 …if ((screenLayout & ~MASK_LAYOUTDIR) != (o.screenLayout & ~MASK_LAYOUTDIR)) diffs |= CONFIG_SCREEN… in diff() 2279 if (screenLayout || o.screenLayout) { in isMoreSpecificThan() 2280 if (((screenLayout^o.screenLayout) & MASK_LAYOUTDIR) != 0) { in isMoreSpecificThan() [all …]
|
/frameworks/base/tools/aapt/ |
D | AaptConfig.cpp | 286 } else if ((config->screenLayout & ResTable_config::MASK_SCREENSIZE) in applyVersionForCompatibility() 288 || (config->screenLayout & ResTable_config::MASK_SCREENLONG) in applyVersionForCompatibility() 362 if (out) out->screenLayout = in parseLayoutDirection() 363 (out->screenLayout&~ResTable_config::MASK_LAYOUTDIR) in parseLayoutDirection() 367 if (out) out->screenLayout = in parseLayoutDirection() 368 (out->screenLayout&~ResTable_config::MASK_LAYOUTDIR) in parseLayoutDirection() 372 if (out) out->screenLayout = in parseLayoutDirection() 373 (out->screenLayout&~ResTable_config::MASK_LAYOUTDIR) in parseLayoutDirection() 383 if (out) out->screenLayout = in parseScreenLayoutSize() 384 (out->screenLayout&~ResTable_config::MASK_SCREENSIZE) in parseScreenLayoutSize() [all …]
|
D | ResourceTable.cpp | 3180 config.screenLayout); in flatten() 3225 tHeader->config.screenLayout); in flatten() 3960 config->screenLayout); in getEntry()
|
/frameworks/base/native/android/ |
D | configuration.cpp | 101 return config->screenLayout&ResTable_config::MASK_SCREENSIZE; in AConfiguration_getScreenSize() 105 return (config->screenLayout&ResTable_config::MASK_SCREENLONG) in AConfiguration_getScreenLong() 136 return (config->screenLayout&ResTable_config::MASK_LAYOUTDIR) in AConfiguration_getLayoutDirection() 195 config->screenLayout = (config->screenLayout&~ResTable_config::MASK_SCREENSIZE) in AConfiguration_setScreenSize() 200 config->screenLayout = (config->screenLayout&~ResTable_config::MASK_SCREENLONG) in AConfiguration_setScreenLong() 233 config->screenLayout = (config->screenLayout&~ResTable_config::MASK_LAYOUTDIR) in AConfiguration_setLayoutDirection()
|
/frameworks/base/core/jni/ |
D | android_content_res_Configuration.cpp | 34 jfieldID screenLayout; member 52 out->screenLayout = env->GetIntField(clazz, gConfigurationClassInfo.screenLayout); in android_Configuration_getFromJava() 82 gConfigurationClassInfo.screenLayout = GetFieldIDOrDie(env, clazz, "screenLayout", "I"); in register_android_content_res_Configuration()
|
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/ |
D | RenderAction.java | 345 config.screenLayout |= Configuration.SCREENLAYOUT_SIZE_SMALL; in getConfiguration() 348 config.screenLayout |= Configuration.SCREENLAYOUT_SIZE_NORMAL; in getConfiguration() 351 config.screenLayout |= Configuration.SCREENLAYOUT_SIZE_LARGE; in getConfiguration() 354 config.screenLayout |= Configuration.SCREENLAYOUT_SIZE_XLARGE; in getConfiguration() 400 config.screenLayout |= Configuration.SCREENLAYOUT_ROUND_YES; in getConfiguration() 403 config.screenLayout |= Configuration.SCREENLAYOUT_ROUND_NO; in getConfiguration() 406 config.screenLayout |= Configuration.SCREENLAYOUT_ROUND_UNDEFINED; in getConfiguration()
|
/frameworks/base/core/tests/coretests/src/android/content/res/ |
D | ConfigurationTest.java | 64 config.screenLayout = Configuration.SCREENLAYOUT_ROUND_YES; in testUpdateFromPreservesRoundBit() 68 assertEquals(config.screenLayout, Configuration.SCREENLAYOUT_ROUND_YES); in testUpdateFromPreservesRoundBit() 74 config.screenLayout = Configuration.SCREENLAYOUT_COMPAT_NEEDED; in testUpdateFromPreservesCompatNeededBit() 77 assertEquals(config.screenLayout, Configuration.SCREENLAYOUT_COMPAT_NEEDED); in testUpdateFromPreservesCompatNeededBit() 80 assertEquals(config2.screenLayout, Configuration.SCREENLAYOUT_COMPAT_NEEDED); in testUpdateFromPreservesCompatNeededBit()
|
D | ResourcesManagerTest.java | 246 config2.screenLayout |= Configuration.SCREENLAYOUT_ROUND_YES; in testMultipleResourcesForOneActivityGetUpdatedWhenActivityBaseUpdates() 267 expectedConfig2.screenLayout |= Configuration.SCREENLAYOUT_ROUND_YES; in testMultipleResourcesForOneActivityGetUpdatedWhenActivityBaseUpdates()
|
/frameworks/base/tools/aapt2/format/proto/ |
D | ProtoDeserialize.cpp | 86 out_config->screenLayout = (out_config->screenLayout & ~ConfigDescription::MASK_LAYOUTDIR) | in DeserializeConfigFromPb() 91 out_config->screenLayout = (out_config->screenLayout & ~ConfigDescription::MASK_LAYOUTDIR) | in DeserializeConfigFromPb() 105 out_config->screenLayout = (out_config->screenLayout & ~ConfigDescription::MASK_SCREENSIZE) | in DeserializeConfigFromPb() 110 out_config->screenLayout = (out_config->screenLayout & ~ConfigDescription::MASK_SCREENSIZE) | in DeserializeConfigFromPb() 115 out_config->screenLayout = (out_config->screenLayout & ~ConfigDescription::MASK_SCREENSIZE) | in DeserializeConfigFromPb() 120 out_config->screenLayout = (out_config->screenLayout & ~ConfigDescription::MASK_SCREENSIZE) | in DeserializeConfigFromPb() 130 out_config->screenLayout = (out_config->screenLayout & ~ConfigDescription::MASK_SCREENLONG) | in DeserializeConfigFromPb() 135 out_config->screenLayout = (out_config->screenLayout & ~ConfigDescription::MASK_SCREENLONG) | in DeserializeConfigFromPb()
|
D | ProtoSerialize.cpp | 67 switch (config.screenLayout & ConfigDescription::MASK_LAYOUTDIR) { in SerializeConfig() 83 switch (config.screenLayout & ConfigDescription::MASK_SCREENSIZE) { in SerializeConfig() 105 switch (config.screenLayout & ConfigDescription::MASK_SCREENLONG) { in SerializeConfig()
|
/frameworks/base/libs/androidfw/tests/ |
D | Config_test.cpp | 136 longConfig.screenLayout = ResTable_config::SCREENLONG_YES; in TEST() 170 deviceConfig.screenLayout = ResTable_config::SCREENLONG_YES; in TEST() 176 targetConfigB.screenLayout = ResTable_config::SCREENLONG_YES; in TEST()
|
/frameworks/base/tools/aapt2/test/ |
D | Builders.h | 279 ConfigDescriptionBuilder& setScreenLayout(uint8_t screenLayout) { in setScreenLayout() argument 280 config_.screenLayout = screenLayout; in setScreenLayout()
|
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/ |
D | TaskTests.java | 709 assertTrue((inOutConfig.screenLayout & Configuration.SCREENLAYOUT_LONG_NO) != 0); in testComputeConfigResourceLayoutOverrides() 765 final int screenLayout = parentConfig.screenLayout in testInsetDisregardedWhenFreeformOverlapsNavBar() local 768 Configuration.reduceScreenLayout(screenLayout, longSideDp, shortSideDp); in testInsetDisregardedWhenFreeformOverlapsNavBar() 786 assertEquals(reducedScreenLayout, inOutConfig.screenLayout); in testInsetDisregardedWhenFreeformOverlapsNavBar() 803 assertEquals(reducedScreenLayout, inOutConfig.screenLayout); in testInsetDisregardedWhenFreeformOverlapsNavBar()
|
D | SizeCompatTests.java | 527 c.screenLayout = fixedScreenLayout | Configuration.SCREENLAYOUT_LAYOUTDIR_LTR; in testFixedScreenLayoutSizeBits() 533 mActivity.getConfiguration().screenLayout & layoutMask); in testFixedScreenLayoutSizeBits() 535 mTask.getConfiguration().screenLayout = Configuration.SCREENLAYOUT_LAYOUTDIR_RTL in testFixedScreenLayoutSizeBits() 541 mActivity.getConfiguration().screenLayout & layoutMask); in testFixedScreenLayoutSizeBits()
|
/frameworks/base/tests/DpiTest/src/com/google/android/test/dpi/ |
D | DpiTestActivity.java | 66 getResources().getConfiguration().screenLayout, in init()
|
/frameworks/base/core/java/android/app/ |
D | ResourcesManager.java | 352 int sl = Configuration.resetScreenLayout(config.screenLayout); in applyDisplayMetricsToConfiguration() 355 config.screenLayout = Configuration.reduceScreenLayout(sl, in applyDisplayMetricsToConfiguration() 359 config.screenLayout = Configuration.reduceScreenLayout(sl, in applyDisplayMetricsToConfiguration()
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | CompatModePackages.java | 372 return new CompatibilityInfo(ai, config.screenLayout, config.smallestScreenWidthDp, in compatibilityInfoForPackageLocked()
|
D | DisplayContent.java | 2146 config.screenLayout = (config.screenLayout & ~Configuration.SCREENLAYOUT_ROUND_MASK) in computeScreenConfiguration() 2298 int sl = Configuration.resetScreenLayout(outConfig.screenLayout); in computeSizeRangesAndScreenLayout() 2304 outConfig.screenLayout = sl; in computeSizeRangesAndScreenLayout()
|
D | Task.java | 2645 inOutConfig.screenLayout = Configuration.SCREENLAYOUT_UNDEFINED; in computeConfigResourceOverrides() 2800 if (inOutConfig.screenLayout == Configuration.SCREENLAYOUT_UNDEFINED) { in computeConfigResourceOverrides() 2815 inOutConfig.screenLayout = computeScreenLayoutOverride(parentConfig.screenLayout, in computeConfigResourceOverrides()
|
/frameworks/base/libs/androidfw/include/androidfw/ |
D | ResourceTypes.h | 1161 uint8_t screenLayout; member
|