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::__anon967
68 out->screenHeightDp = env->GetIntField(clazz, gConfigurationClassInfo.screenHeightDp);
121 GET_FIELD_ID(gConfigurationClassInfo.screenHeightDp, clazz,
122 "screenHeightDp", "I");
H A Dandroid_util_AssetManager.cpp514 jint screenWidthDp, jint screenHeightDp,
540 config.screenHeightDp = (uint16_t)screenHeightDp;
506 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.java483 * Default value for {@link #screenHeightDp} indicating that no width
495 public int screenHeightDp; field in class:Configuration
508 * This is the smallest value of both screenWidthDp and screenHeightDp
574 screenHeightDp = o.screenHeightDp;
624 if (screenHeightDp != SCREEN_HEIGHT_DP_UNDEFINED) {
625 sb.append(" h"); sb.append(screenHeightDp); sb.append("dp");
738 screenHeightDp = compatScreenHeightDp = SCREEN_HEIGHT_DP_UNDEFINED;
851 if (delta.screenHeightDp != SCREEN_HEIGHT_DP_UNDEFINED
852 && screenHeightDp !
[all...]
H A DAssetManager.java655 int smallestScreenWidthDp, int screenWidthDp, int screenHeightDp,
652 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.java1491 mConfiguration.screenWidthDp, mConfiguration.screenHeightDp,
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DRenderAction.java338 config.screenHeightDp = hardwareConfig.getScreenHeight() / density.getDpiValue();
339 if (config.screenHeightDp < config.screenWidthDp) {
340 config.smallestScreenWidthDp = config.screenHeightDp;
348 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;
1418 out->screenHeightDp = out->SCREENWIDTH_ANY;
1431 out->screenHeightDp = (uint16_t)atoi(xName.string());
1474 if (v == 0) v = screenHeightDp.compare(o.screenHeightDp);
[all...]
H A DAaptAssets.h125 String8 screenHeightDp; member in struct:AaptGroupEntry
H A DCommand.cpp470 config.screenHeightDp = 480;
H A DResourceTable.cpp2837 config.screenHeightDp,
2880 tHeader->config.screenHeightDp,
3516 config->screenHeightDp,
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp1414 screenHeightDp = dtohs(screenHeightDp);
1428 screenHeightDp = htods(screenHeightDp);
1482 if (screenHeightDp != o.screenHeightDp) {
1483 return screenHeightDp < o.screenHeightDp ? -1 : 1;
1585 if (screenHeightDp != o.screenHeightDp) {
[all...]
/frameworks/base/include/androidfw/
H A DResourceTypes.h999 uint16_t screenHeightDp; member in struct:android::ResTable_config::__anon1058::__anon1059
/frameworks/base/core/java/android/app/
H A DActivityThread.java3899 config.screenHeightDp = (int)(dm.heightPixels / dm.density);
3904 config.screenWidthDp, config.screenHeightDp);
3908 config.screenHeightDp, config.screenWidthDp);
3912 config.compatScreenHeightDp = config.screenHeightDp;
/frameworks/base/services/java/com/android/server/wm/
H A DWindowManagerService.java6961 config.screenHeightDp = (int)(mPolicy.getConfigDisplayHeight(dw, dh, mRotation)
6966 config.compatScreenHeightDp = (int)(config.screenHeightDp / mCompatibleScreenScale);

Completed in 317 milliseconds