Searched refs:screenHeightDp (Results 1 - 19 of 19) sorted by relevance

/frameworks/base/core/jni/
H A Dandroid_content_res_Configuration.cpp44 jfieldID screenHeightDp; member in struct:android::__anon829
70 out->screenHeightDp = env->GetIntField(clazz, gConfigurationClassInfo.screenHeightDp);
93 gConfigurationClassInfo.screenHeightDp = GetFieldIDOrDie(env, clazz, "screenHeightDp", "I");
H A Dandroid_util_AssetManager.cpp604 jint screenWidthDp, jint screenHeightDp,
634 config.screenHeightDp = (uint16_t)screenHeightDp;
596 android_content_AssetManager_setConfiguration(JNIEnv* env, jobject clazz, jint mcc, jint mnc, jstring locale, jint orientation, jint touchscreen, jint density, jint keyboard, jint keyboardHidden, jint navigation, jint screenWidth, jint screenHeight, jint smallestScreenWidthDp, jint screenWidthDp, jint screenHeightDp, jint screenLayout, jint uiMode, jint sdkVersion) argument
/frameworks/base/core/java/android/content/res/
H A DConfiguration.java533 * Default value for {@link #screenHeightDp} indicating that no width
545 public int screenHeightDp; field in class:Configuration
558 * This is the smallest value of both screenWidthDp and screenHeightDp
669 screenHeightDp = o.screenHeightDp;
719 if (screenHeightDp != SCREEN_HEIGHT_DP_UNDEFINED) {
720 sb.append(" h"); sb.append(screenHeightDp); sb.append("dp");
834 screenHeightDp = compatScreenHeightDp = SCREEN_HEIGHT_DP_UNDEFINED;
953 if (delta.screenHeightDp != SCREEN_HEIGHT_DP_UNDEFINED
954 && screenHeightDp !
[all...]
H A DAssetManager.java702 int smallestScreenWidthDp, int screenWidthDp, int screenHeightDp,
699 setConfiguration(int mcc, int mnc, String locale, int orientation, int touchscreen, int density, int keyboard, int keyboardHidden, int navigation, int screenWidth, int screenHeight, int smallestScreenWidthDp, int screenWidthDp, int screenHeightDp, int screenLayout, int uiMode, int majorVersion) argument
H A DCompatibilityInfo.java460 inoutConfig.screenHeightDp = inoutConfig.compatScreenHeightDp;
H A DResources.java2043 mConfiguration.screenWidthDp, mConfiguration.screenHeightDp,
/frameworks/base/core/java/android/app/
H A DResourcesManager.java88 config.screenHeightDp = (int)(dm.heightPixels / dm.density);
93 config.screenWidthDp, config.screenHeightDp);
97 config.screenHeightDp, config.screenWidthDp);
101 config.compatScreenHeightDp = config.screenHeightDp;
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DRenderAction.java354 config.screenHeightDp = hardwareConfig.getScreenHeight() / density.getDpiValue();
355 if (config.screenHeightDp < config.screenWidthDp) {
357 config.smallestScreenWidthDp = config.screenHeightDp;
365 config.compatScreenHeightDp = config.screenHeightDp;
/frameworks/base/native/android/
H A Dconfiguration.cpp123 return config->screenHeightDp;
220 config->screenHeightDp = value;
/frameworks/base/services/core/java/com/android/server/wm/
H A DTaskStack.java191 mOverrideConfig.screenHeightDp =
192 Math.min((int)(mBounds.height() / density), serviceConfig.screenHeightDp);
194 Math.min(mOverrideConfig.screenWidthDp, mOverrideConfig.screenHeightDp);
196 (mOverrideConfig.screenWidthDp <= mOverrideConfig.screenHeightDp)
H A DWindowManagerService.java7369 config.screenHeightDp =
7382 config.compatScreenHeightDp = (int)(config.screenHeightDp / mCompatibleScreenScale);
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp1845 screenHeightDp = dtohs(screenHeightDp);
1859 screenHeightDp = htods(screenHeightDp);
1932 if (screenHeightDp != o.screenHeightDp) {
1933 return screenHeightDp < o.screenHeightDp ? -1 : 1;
2072 if (screenHeightDp != o.screenHeightDp) {
[all...]
/frameworks/base/tools/aapt2/
H A DConfigDescription.cpp509 out->screenHeightDp = out->SCREENWIDTH_ANY;
522 out->screenHeightDp = (uint16_t)atoi(xName.c_str());
732 || config->screenHeightDp != ResTable_config::SCREENHEIGHT_ANY) {
/frameworks/base/core/java/android/view/
H A DDisplayInfo.java559 && configuration.screenHeightDp != Configuration.SCREEN_HEIGHT_DP_UNDEFINED)
560 ? (int)((configuration.screenHeightDp * outMetrics.density) + 0.5f) : height;
/frameworks/base/tools/aapt/
H A DAaptConfig.cpp258 || config->screenHeightDp != ResTable_config::SCREENHEIGHT_ANY) {
773 out->screenHeightDp = out->SCREENWIDTH_ANY;
786 out->screenHeightDp = (uint16_t)atoi(xName.string());
H A DResourceTable.cpp3111 config.screenHeightDp,
3156 tHeader->config.screenHeightDp,
3891 config->screenHeightDp,
H A DCommand.cpp618 config.screenHeightDp = 480;
/frameworks/base/include/androidfw/
H A DResourceTypes.h1121 uint16_t screenHeightDp; member in struct:android::ResTable_config::__anon970::__anon971
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityStack.java3880 if (oldStackOverride.screenHeightDp != mOverrideConfig.screenHeightDp

Completed in 683 milliseconds