/frameworks/base/core/jni/ |
D | android_content_res_Configuration.cpp | 44 jfieldID screenHeightDp; member 70 out->screenHeightDp = env->GetIntField(clazz, gConfigurationClassInfo.screenHeightDp); in android_Configuration_getFromJava() 93 gConfigurationClassInfo.screenHeightDp = GetFieldIDOrDie(env, clazz, "screenHeightDp", "I"); in register_android_content_res_Configuration()
|
D | android_util_AssetManager.cpp | 630 env->SetIntField(result, gConfigurationOffsets.mScreenHeightDpOffset, config.screenHeightDp); in constructConfigurationObject() 678 jint screenWidthDp, jint screenHeightDp, in android_content_AssetManager_setConfiguration() argument 708 config.screenHeightDp = (uint16_t)screenHeightDp; in android_content_AssetManager_setConfiguration()
|
/frameworks/base/core/java/android/content/res/ |
D | Configuration.java | 703 public int screenHeightDp; field in Configuration 894 screenHeightDp = o.screenHeightDp; in setTo() 947 if (screenHeightDp != SCREEN_HEIGHT_DP_UNDEFINED) { in toString() 948 sb.append(" h"); sb.append(screenHeightDp); sb.append("dp"); in toString() 1084 screenHeightDp = compatScreenHeightDp = SCREEN_HEIGHT_DP_UNDEFINED; in setToDefaults() 1252 if (delta.screenHeightDp != SCREEN_HEIGHT_DP_UNDEFINED in updateFrom() 1253 && screenHeightDp != delta.screenHeightDp) { in updateFrom() 1255 screenHeightDp = delta.screenHeightDp; in updateFrom() 1409 if ((compareUndefined || delta.screenHeightDp != SCREEN_HEIGHT_DP_UNDEFINED) in diff() 1410 && screenHeightDp != delta.screenHeightDp) { in diff() [all …]
|
D | CompatibilityInfo.java | 474 inoutConfig.screenHeightDp = inoutConfig.compatScreenHeightDp; in applyToConfiguration()
|
D | AssetManager.java | 785 int smallestScreenWidthDp, int screenWidthDp, int screenHeightDp, in setConfiguration() argument
|
D | ResourcesImpl.java | 423 mConfiguration.screenWidthDp, mConfiguration.screenHeightDp, in updateConfiguration()
|
/frameworks/base/core/java/com/android/internal/view/ |
D | ActionBarPolicy.java | 50 final int height = config.screenHeightDp; in getMaxActionButtons() 83 final int height = configuration.screenHeightDp; in hasEmbeddedTabs()
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/ |
D | RenderAction.java | 352 config.screenHeightDp = hardwareConfig.getScreenHeight() / density.getDpiValue(); in getConfiguration() 353 if (config.screenHeightDp < config.screenWidthDp) { in getConfiguration() 355 config.smallestScreenWidthDp = config.screenHeightDp; in getConfiguration() 363 config.compatScreenHeightDp = config.screenHeightDp; in getConfiguration()
|
/frameworks/support/compat/java/android/support/v4/content/res/ |
D | ConfigurationHelper.java | 43 return resources.getConfiguration().screenHeightDp; in getScreenHeightDp()
|
/frameworks/base/tools/aapt2/ |
D | ConfigDescription.cpp | 600 out->screenHeightDp = out->SCREENWIDTH_ANY; in parseScreenHeightDp() 613 out->screenHeightDp = (uint16_t)atoi(xName.c_str()); in parseScreenHeightDp() 853 config->screenHeightDp != ResTable_config::SCREENHEIGHT_ANY) { in ApplyVersionForCompatibility() 905 if (screenHeightDp || o.screenHeightDp) return (!o.screenHeightDp); in HasHigherPrecedenceThan()
|
/frameworks/base/native/android/ |
D | configuration.cpp | 123 return config->screenHeightDp; in AConfiguration_getScreenHeightDp() 220 config->screenHeightDp = value; in AConfiguration_setScreenHeightDp()
|
/frameworks/support/v7/appcompat/src/android/support/v7/view/ |
D | ActionBarPolicy.java | 57 final int heightDp = configuration.screenHeightDp; in getMaxActionButtons()
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | ButtonBarLayout.java | 50 context.getResources().getConfiguration().screenHeightDp in ButtonBarLayout()
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | StackWindowController.java | 318 parentConfig.screenHeightDp); in adjustConfigurationForBounds() 327 config.screenHeightDp = height; in adjustConfigurationForBounds()
|
D | DockedStackDividerController.java | 248 config.screenHeightDp = (int) in initSnapAlgorithmForRotations()
|
/frameworks/support/v7/appcompat/src/android/support/v7/widget/ |
D | ButtonBarLayout.java | 54 getResources().getConfiguration().screenHeightDp >= ALLOW_STACKING_MIN_HEIGHT_DP; in ButtonBarLayout()
|
/frameworks/base/libs/androidfw/ |
D | ResourceTypes.cpp | 1853 screenHeightDp = dtohs(screenHeightDp); in copyFromDtoH() 1867 screenHeightDp = htods(screenHeightDp); in swapHtoD() 1945 if (screenHeightDp != o.screenHeightDp) { in compareLogical() 1946 return screenHeightDp < o.screenHeightDp ? -1 : 1; in compareLogical() 2089 if (screenHeightDp != o.screenHeightDp) { in isMoreSpecificThan() 2090 if (!screenHeightDp) return false; in isMoreSpecificThan() 2091 if (!o.screenHeightDp) return true; in isMoreSpecificThan() 2356 if (requested->screenHeightDp) { in isBetterThan() 2357 myDelta += requested->screenHeightDp - screenHeightDp; in isBetterThan() 2358 otherDelta += requested->screenHeightDp - o.screenHeightDp; in isBetterThan() [all …]
|
/frameworks/base/core/java/android/app/ |
D | ResourcesManager.java | 176 config.screenHeightDp = (int) (dm.heightPixels / dm.density); in applyNonDefaultDisplayMetricsToConfiguration() 181 config.screenWidthDp, config.screenHeightDp); in applyNonDefaultDisplayMetricsToConfiguration() 185 config.screenHeightDp, config.screenWidthDp); in applyNonDefaultDisplayMetricsToConfiguration() 189 config.compatScreenHeightDp = config.screenHeightDp; in applyNonDefaultDisplayMetricsToConfiguration()
|
/frameworks/base/tools/aapt/ |
D | AaptConfig.cpp | 279 || config->screenHeightDp != ResTable_config::SCREENHEIGHT_ANY) { in applyVersionForCompatibility() 839 out->screenHeightDp = out->SCREENWIDTH_ANY; in parseScreenHeightDp() 852 out->screenHeightDp = (uint16_t)atoi(xName.string()); in parseScreenHeightDp()
|
/frameworks/support/v7/appcompat/src/android/support/v7/view/menu/ |
D | ActionMenuItemView.java | 104 final int heightDp = config.screenHeightDp; in shouldAllowTextWithIcon()
|
/frameworks/base/services/tests/servicestests/src/com/android/server/am/ |
D | ConfigurationContainerTests.java | 181 rootParentConfig.screenHeightDp = 100; in testConfigurationChangePropagation()
|
/frameworks/base/core/java/com/android/internal/view/menu/ |
D | ActionMenuItemView.java | 102 final int height = configuration.screenHeightDp; in shouldAllowTextWithIcon()
|
/frameworks/support/design/src/android/support/design/widget/ |
D | FloatingActionButton.java | 443 final int height = res.getConfiguration().screenHeightDp;
|
/frameworks/base/libs/androidfw/include/androidfw/ |
D | ResourceTypes.h | 1127 uint16_t screenHeightDp; member
|
/frameworks/base/services/tests/servicestests/src/com/android/server/wm/ |
D | WindowContainerTests.java | 699 rootParentConfig.screenHeightDp = 100; in testConfigurationChangePropagation()
|