Searched refs:screenLayout (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/core/java/android/content/res/
H A DConfiguration.java92 public int screenLayout; field in class:Configuration
241 screenLayout = o.screenLayout;
271 sb.append(screenLayout);
297 screenLayout = SCREENLAYOUT_SIZE_UNDEFINED;
375 if (delta.screenLayout != SCREENLAYOUT_SIZE_UNDEFINED
376 && screenLayout != delta.screenLayout) {
378 screenLayout = delta.screenLayout;
[all...]
H A DAssetManager.java654 int screenLayout, int uiMode, int majorVersion);
651 setConfiguration(int mcc, int mnc, String locale, int orientation, int touchscreen, int density, int keyboard, int keyboardHidden, int navigation, int screenWidth, int screenHeight, int screenLayout, int uiMode, int majorVersion) argument
H A DResources.java1269 mConfiguration.orientation, mConfiguration.screenLayout);
1301 mConfiguration.screenLayout, mConfiguration.uiMode, sSdkVersion);
/frameworks/base/core/java/android/util/
H A DDisplayMetrics.java140 int screenLayout) {
148 if ((screenLayout&Configuration.SCREENLAYOUT_COMPAT_NEEDED) == 0) {
157 if ((screenLayout&Configuration.SCREENLAYOUT_SIZE_MASK)
167 if ((screenLayout&Configuration.SCREENLAYOUT_SIZE_MASK)
139 updateMetrics(CompatibilityInfo compatibilityInfo, int orientation, int screenLayout) argument
/frameworks/base/include/utils/
H A DResourceTypes.h933 // screenLayout bits for screen size class.
941 // screenLayout bits for wide/long screen variation.
967 uint8_t screenLayout; member in struct:android::ResTable_config::__anon205::__anon206
1021 diff = (int32_t)(screenLayout - o.screenLayout);
1062 if (screenLayout != o.screenLayout) diffs |= CONFIG_SCREEN_LAYOUT;
1097 if (screenLayout || o.screenLayout) {
1098 if (((screenLayout
[all...]
/frameworks/base/core/jni/
H A Dandroid_content_res_Configuration.cpp34 jfieldID screenLayout; member in struct:android::__anon30
49 out->screenLayout = env->GetIntField(clazz, gConfigurationClassInfo.screenLayout);
95 GET_FIELD_ID(gConfigurationClassInfo.screenLayout, gConfigurationClassInfo.clazz,
96 "screenLayout", "I");
H A Dandroid_util_AssetManager.cpp535 jint screenLayout, jint uiMode,
558 config.screenLayout = (uint8_t)screenLayout;
528 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 screenLayout, jint uiMode, jint sdkVersion) argument
/frameworks/base/native/android/
H A Dconfiguration.cpp96 return config->screenLayout&ResTable_config::MASK_SCREENSIZE;
100 return (config->screenLayout&ResTable_config::MASK_SCREENLONG)
169 config->screenLayout = (config->screenLayout&~ResTable_config::MASK_SCREENSIZE)
174 config->screenLayout = (config->screenLayout&~ResTable_config::MASK_SCREENLONG)
/frameworks/base/tools/aapt/
H A DAaptAssets.cpp148 *value = (config.screenLayout&ResTable_config::MASK_SCREENSIZE);
155 *value = (config.screenLayout&ResTable_config::MASK_SCREENLONG);
750 if (out) out->screenLayout =
751 (out->screenLayout&~ResTable_config::MASK_SCREENSIZE)
755 if (out) out->screenLayout =
756 (out->screenLayout&~ResTable_config::MASK_SCREENSIZE)
760 if (out) out->screenLayout =
761 (out->screenLayout&~ResTable_config::MASK_SCREENSIZE)
765 if (out) out->screenLayout =
766 (out->screenLayout
[all...]
/frameworks/base/libs/utils/
H A DResourceTypes.cpp4168 if (type->config.screenLayout != 0) {
4170 type->config.screenLayout&ResTable_config::MASK_SCREENSIZE);
4171 switch (type->config.screenLayout&ResTable_config::MASK_SCREENSIZE) {
4186 type->config.screenLayout&ResTable_config::MASK_SCREENLONG);
4187 switch (type->config.screenLayout&ResTable_config::MASK_SCREENLONG) {
/frameworks/base/services/java/com/android/server/
H A DWindowManagerService.java5050 config.screenLayout = mScreenLayout;

Completed in 209 milliseconds