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

12

/frameworks/support/compat/honeycomb_mr2/android/support/v4/content/res/
H A DConfigurationHelperHoneycombMr2.java26 return resources.getConfiguration().screenHeightDp;
/frameworks/base/core/jni/
H A Dandroid_content_res_Configuration.cpp44 jfieldID screenHeightDp; member in struct:android::__anon865
70 out->screenHeightDp = env->GetIntField(clazz, gConfigurationClassInfo.screenHeightDp);
93 gConfigurationClassInfo.screenHeightDp = GetFieldIDOrDie(env, clazz, "screenHeightDp", "I");
H A Dandroid_util_AssetManager.cpp631 env->SetIntField(result, gConfigurationOffsets.mScreenHeightDpOffset, config.screenHeightDp);
679 jint screenWidthDp, jint screenHeightDp,
709 config.screenHeightDp = (uint16_t)screenHeightDp;
2292 "screenHeightDp", "I");
671 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/com/android/internal/view/
H A DActionBarPolicy.java50 final int height = config.screenHeightDp;
83 final int height = configuration.screenHeightDp;
/frameworks/base/core/java/android/content/res/
H A DConfiguration.java602 * Default value for {@link #screenHeightDp} indicating that no width
614 public int screenHeightDp; field in class:Configuration
627 * This is the smallest value of both screenWidthDp and screenHeightDp
769 screenHeightDp = o.screenHeightDp;
820 if (screenHeightDp != SCREEN_HEIGHT_DP_UNDEFINED) {
821 sb.append(" h"); sb.append(screenHeightDp); sb.append("dp");
936 screenHeightDp = compatScreenHeightDp = SCREEN_HEIGHT_DP_UNDEFINED;
1058 if (delta.screenHeightDp != SCREEN_HEIGHT_DP_UNDEFINED
1059 && screenHeightDp !
[all...]
H A DAssetManager.java758 int smallestScreenWidthDp, int screenWidthDp, int screenHeightDp,
755 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 DResourcesImpl.java415 mConfiguration.screenWidthDp, mConfiguration.screenHeightDp,
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DRenderAction.java352 config.screenHeightDp = hardwareConfig.getScreenHeight() / density.getDpiValue();
353 if (config.screenHeightDp < config.screenWidthDp) {
355 config.smallestScreenWidthDp = config.screenHeightDp;
363 config.compatScreenHeightDp = config.screenHeightDp;
/frameworks/base/native/android/
H A Dconfiguration.cpp123 return config->screenHeightDp;
220 config->screenHeightDp = value;
/frameworks/base/core/java/com/android/internal/widget/
H A DButtonBarLayout.java50 context.getResources().getConfiguration().screenHeightDp
/frameworks/base/tools/aapt2/
H A DConfigDescription.cpp534 out->screenHeightDp = out->SCREENWIDTH_ANY;
547 out->screenHeightDp = (uint16_t)atoi(xName.c_str());
766 || config->screenHeightDp != ResTable_config::SCREENHEIGHT_ANY) {
/frameworks/base/core/java/android/app/
H A DResourcesManager.java176 config.screenHeightDp = (int) (dm.heightPixels / dm.density);
181 config.screenWidthDp, config.screenHeightDp);
185 config.screenHeightDp, config.screenWidthDp);
189 config.compatScreenHeightDp = config.screenHeightDp;
H A DActivityThread.java2776 if (config.screenHeightDp != Configuration.SCREEN_HEIGHT_DP_UNDEFINED) {
2777 vertical.put(config.screenHeightDp, 0);
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp1847 screenHeightDp = dtohs(screenHeightDp);
1861 screenHeightDp = htods(screenHeightDp);
1937 if (screenHeightDp != o.screenHeightDp) {
1938 return screenHeightDp < o.screenHeightDp ? -1 : 1;
2077 if (screenHeightDp != o.screenHeightDp) {
[all...]
/frameworks/base/core/java/android/view/
H A DDisplayInfo.java542 && configuration.screenHeightDp != Configuration.SCREEN_HEIGHT_DP_UNDEFINED)
543 ? (int)((configuration.screenHeightDp * outMetrics.density) + 0.5f) : height;
/frameworks/base/core/java/com/android/internal/view/menu/
H A DActionMenuItemView.java107 final int height = configuration.screenHeightDp;
/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.cpp3169 config.screenHeightDp,
3214 tHeader->config.screenHeightDp,
3949 config->screenHeightDp,
H A DCommand.cpp766 config.screenHeightDp = 480;
/frameworks/base/services/core/java/com/android/server/am/
H A DTaskRecord.java1531 config.screenHeightDp =
1532 Math.min((int)(mTmpStableBounds.height() / density), serviceConfig.screenHeightDp);
1535 config.orientation = (config.screenWidthDp <= config.screenHeightDp)
1567 extracted.screenHeightDp = config.screenHeightDp;
H A DActivityStack.java4676 oldTaskOverride.screenHeightDp, taskConfig.screenHeightDp);
4702 final int oldHeight = oldTaskOverride.screenHeightDp;
4703 final int newHeight = taskConfig.screenHeightDp;
/frameworks/base/include/androidfw/
H A DResourceTypes.h1127 uint16_t screenHeightDp; member in struct:android::ResTable_config::__anon1010::__anon1011
/frameworks/base/services/core/java/com/android/server/wm/
H A DDockedStackDividerController.java212 config.screenHeightDp = (int)
/frameworks/base/core/java/android/widget/
H A DSearchView.java2044 final int height = configuration.screenHeightDp;

Completed in 770 milliseconds

12