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::__anon795
68 out->screenHeightDp = env->GetIntField(clazz, gConfigurationClassInfo.screenHeightDp);
112 GET_FIELD_ID(gConfigurationClassInfo.screenHeightDp, clazz,
113 "screenHeightDp", "I");
H A Dandroid_util_AssetManager.cpp603 jint screenWidthDp, jint screenHeightDp,
629 config.screenHeightDp = (uint16_t)screenHeightDp;
595 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.java504 * Default value for {@link #screenHeightDp} indicating that no width
516 public int screenHeightDp; field in class:Configuration
529 * This is the smallest value of both screenWidthDp and screenHeightDp
640 screenHeightDp = o.screenHeightDp;
690 if (screenHeightDp != SCREEN_HEIGHT_DP_UNDEFINED) {
691 sb.append(" h"); sb.append(screenHeightDp); sb.append("dp");
805 screenHeightDp = compatScreenHeightDp = SCREEN_HEIGHT_DP_UNDEFINED;
924 if (delta.screenHeightDp != SCREEN_HEIGHT_DP_UNDEFINED
925 && screenHeightDp !
[all...]
H A DAssetManager.java688 int smallestScreenWidthDp, int screenWidthDp, int screenHeightDp,
685 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.java1835 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 DAaptConfig.cpp248 || config->screenHeightDp != ResTable_config::SCREENHEIGHT_ANY) {
744 out->screenHeightDp = out->SCREENWIDTH_ANY;
757 out->screenHeightDp = (uint16_t)atoi(xName.string());
H A DResourceTable.cpp3053 config.screenHeightDp,
3096 tHeader->config.screenHeightDp,
3828 config->screenHeightDp,
H A DCommand.cpp617 config.screenHeightDp = 480;
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp1773 screenHeightDp = dtohs(screenHeightDp);
1787 screenHeightDp = htods(screenHeightDp);
1858 if (screenHeightDp != o.screenHeightDp) {
1859 return screenHeightDp < o.screenHeightDp ? -1 : 1;
1994 if (screenHeightDp != o.screenHeightDp) {
[all...]
/frameworks/base/include/androidfw/
H A DResourceTypes.h1120 uint16_t screenHeightDp; member in struct:android::ResTable_config::__anon928::__anon929
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowManagerService.java7250 config.screenHeightDp = (int)(mPolicy.getConfigDisplayHeight(dw, dh, mRotation)
7255 config.compatScreenHeightDp = (int)(config.screenHeightDp / mCompatibleScreenScale);

Completed in 3112 milliseconds