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

/frameworks/base/core/jni/
H A Dandroid_content_res_Configuration.cpp42 jfieldID screenHeightDp; member in struct:android::__anon1005
68 out->screenHeightDp = env->GetIntField(clazz, gConfigurationClassInfo.screenHeightDp);
121 GET_FIELD_ID(gConfigurationClassInfo.screenHeightDp, clazz,
122 "screenHeightDp", "I");
H A Dandroid_util_AssetManager.cpp507 jint screenWidthDp, jint screenHeightDp,
533 config.screenHeightDp = (uint16_t)screenHeightDp;
499 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.java490 * Default value for {@link #screenHeightDp} indicating that no width
502 public int screenHeightDp; field in class:Configuration
515 * This is the smallest value of both screenWidthDp and screenHeightDp
614 screenHeightDp = o.screenHeightDp;
664 if (screenHeightDp != SCREEN_HEIGHT_DP_UNDEFINED) {
665 sb.append(" h"); sb.append(screenHeightDp); sb.append("dp");
778 screenHeightDp = compatScreenHeightDp = SCREEN_HEIGHT_DP_UNDEFINED;
897 if (delta.screenHeightDp != SCREEN_HEIGHT_DP_UNDEFINED
898 && screenHeightDp !
[all...]
H A DAssetManager.java661 int smallestScreenWidthDp, int screenWidthDp, int screenHeightDp,
658 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.java1599 mConfiguration.screenWidthDp, mConfiguration.screenHeightDp,
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DRenderAction.java348 config.screenHeightDp = hardwareConfig.getScreenHeight() / density.getDpiValue();
349 if (config.screenHeightDp < config.screenWidthDp) {
350 config.smallestScreenWidthDp = config.screenHeightDp;
358 config.compatScreenHeightDp = config.screenHeightDp;
/frameworks/base/core/java/android/app/
H A DResourcesManager.java117 config.screenHeightDp = (int)(dm.heightPixels / dm.density);
122 config.screenWidthDp, config.screenHeightDp);
126 config.screenHeightDp, config.screenWidthDp);
130 config.compatScreenHeightDp = config.screenHeightDp;
/frameworks/base/native/android/
H A Dconfiguration.cpp119 return config->screenHeightDp;
211 config->screenHeightDp = value;
/frameworks/base/tools/aapt/
H A DAaptAssets.cpp210 *value = config.screenHeightDp;
346 return config.screenHeightDp;
687 this->screenHeightDp = heightdp;
722 s += screenHeightDp;
792 if (this->screenHeightDp != "") {
796 s += screenHeightDp;
1426 out->screenHeightDp = out->SCREENWIDTH_ANY;
1439 out->screenHeightDp = (uint16_t)atoi(xName.string());
1482 if (v == 0) v = screenHeightDp.compare(o.screenHeightDp);
[all...]
H A DAaptAssets.h125 String8 screenHeightDp; member in struct:AaptGroupEntry
H A DResourceTable.cpp2898 config.screenHeightDp,
2941 tHeader->config.screenHeightDp,
3577 config->screenHeightDp,
H A DCommand.cpp528 config.screenHeightDp = 480;
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp1554 screenHeightDp = dtohs(screenHeightDp);
1568 screenHeightDp = htods(screenHeightDp);
1622 if (screenHeightDp != o.screenHeightDp) {
1623 return screenHeightDp < o.screenHeightDp ? -1 : 1;
1725 if (screenHeightDp != o.screenHeightDp) {
[all...]
/frameworks/base/include/androidfw/
H A DResourceTypes.h1004 uint16_t screenHeightDp; member in struct:android::ResTable_config::__anon1099::__anon1100
/frameworks/base/services/java/com/android/server/wm/
H A DWindowManagerService.java6697 config.screenHeightDp = (int)(mPolicy.getConfigDisplayHeight(dw, dh, mRotation)
6702 config.compatScreenHeightDp = (int)(config.screenHeightDp / mCompatibleScreenScale);

Completed in 160 milliseconds