Searched defs:screenWidthDp (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/jni/
H A Dandroid_content_res_Configuration.cpp41 jfieldID screenWidthDp; member in struct:android::__anon28
67 out->screenWidthDp = env->GetIntField(clazz, gConfigurationClassInfo.screenWidthDp);
119 GET_FIELD_ID(gConfigurationClassInfo.screenWidthDp, clazz,
120 "screenWidthDp", "I");
H A Dandroid_util_AssetManager.cpp514 jint screenWidthDp, jint screenHeightDp,
539 config.screenWidthDp = (uint16_t)screenWidthDp;
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.java255 public int screenWidthDp; field in class:Configuration
268 * This is the smallest value of both screenWidthDp and screenHeightDp
323 screenWidthDp = o.screenWidthDp;
356 if (screenWidthDp != SCREEN_WIDTH_DP_UNDEFINED) {
357 sb.append(" w"); sb.append(screenWidthDp); sb.append("dp");
468 screenWidthDp = compatScreenWidthDp = SCREEN_WIDTH_DP_UNDEFINED;
566 if (delta.screenWidthDp != SCREEN_WIDTH_DP_UNDEFINED
567 && screenWidthDp != delta.screenWidthDp) {
[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
/frameworks/base/tools/aapt/
H A DAaptAssets.h129 String8 screenWidthDp; member in struct:AaptGroupEntry
/frameworks/base/include/utils/
H A DResourceTypes.h978 uint16_t screenWidthDp; member in struct:android::ResTable_config::__anon218::__anon219
1005 screenWidthDp = dtohs(screenWidthDp);
1019 screenWidthDp = htods(screenWidthDp);
1127 if (screenWidthDp != o.screenWidthDp) {
1128 if (!screenWidthDp) return false;
1129 if (!o.screenWidthDp) return true;
1272 if (requested->screenWidthDp) {
[all...]

Completed in 186 milliseconds