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

/frameworks/base/core/jni/
H A Dandroid_content_res_Configuration.cpp42 jfieldID screenHeightDp; member in struct:android::__anon28
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.java262 public int screenHeightDp; field in class:Configuration
268 * This is the smallest value of both screenWidthDp and screenHeightDp
324 screenHeightDp = o.screenHeightDp;
361 if (screenHeightDp != SCREEN_HEIGHT_DP_UNDEFINED) {
362 sb.append(" h"); sb.append(screenHeightDp); sb.append("dp");
469 screenHeightDp = compatScreenHeightDp = SCREEN_HEIGHT_DP_UNDEFINED;
571 if (delta.screenHeightDp != SCREEN_HEIGHT_DP_UNDEFINED
572 && screenHeightDp != delta.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.java1487 mConfiguration.screenWidthDp, mConfiguration.screenHeightDp,
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DRenderAction.java332 config.screenHeightDp = mParams.getScreenHeight() / density.getDpiValue();
333 if (config.screenHeightDp < config.screenWidthDp) {
334 config.smallestScreenWidthDp = config.screenHeightDp;
341 config.compatScreenHeightDp = config.screenHeightDp;
/frameworks/base/include/utils/
H A DResourceTypes.h979 uint16_t screenHeightDp; member in struct:android::ResTable_config::__anon218::__anon219
1006 screenHeightDp = dtohs(screenHeightDp);
1020 screenHeightDp = htods(screenHeightDp);
1132 if (screenHeightDp != o.screenHeightDp) {
1133 if (!screenHeightDp) return false;
1134 if (!o.screenHeightDp) return true;
1276 if (requested->screenHeightDp) {
[all...]
/frameworks/base/native/android/
H A Dconfiguration.cpp119 return config->screenHeightDp;
206 config->screenHeightDp = value;
/frameworks/base/tools/aapt/
H A DAaptAssets.cpp165 *value = config.screenHeightDp;
299 return config.screenHeightDp;
628 this->screenHeightDp = heightdp;
660 s += screenHeightDp;
724 if (this->screenHeightDp != "") {
728 s += screenHeightDp;
1318 out->screenHeightDp = out->SCREENWIDTH_ANY;
1331 out->screenHeightDp = (uint16_t)atoi(xName.string());
1373 if (v == 0) v = screenHeightDp.compare(o.screenHeightDp);
[all...]
H A DAaptAssets.h130 String8 screenHeightDp; member in struct:AaptGroupEntry
H A DCommand.cpp467 config.screenHeightDp = 480;
H A DResourceTable.cpp2738 config.screenHeightDp));
2780 tHeader->config.screenHeightDp));
3380 config->screenHeightDp));
/frameworks/base/libs/utils/
H A DResourceTypes.cpp2607 params->screenHeightDp));
3991 thisConfig.screenHeightDp,
3992 config ? config->screenHeightDp : 0));
4295 thisConfig.screenHeightDp));
4795 if (type->config.screenHeightDp != 0) {
4796 printf(" hdp=%d", dtohs(type->config.screenHeightDp));
/frameworks/base/services/java/com/android/server/wm/
H A DWindowManagerService.java6078 config.screenHeightDp = (int)(mPolicy.getConfigDisplayHeight(dw, dh, mRotation)
6083 config.compatScreenHeightDp = (int)(config.screenHeightDp / mCompatibleScreenScale);

Completed in 6036 milliseconds