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

/frameworks/base/core/java/android/content/res/
H A DConfiguration.java91 /** Constant for {@link #screenLayout}: bits that encode the size. */
93 /** Constant for {@link #screenLayout}: a {@link #SCREENLAYOUT_SIZE_MASK}
96 /** Constant for {@link #screenLayout}: a {@link #SCREENLAYOUT_SIZE_MASK}
104 /** Constant for {@link #screenLayout}: a {@link #SCREENLAYOUT_SIZE_MASK}
112 /** Constant for {@link #screenLayout}: a {@link #SCREENLAYOUT_SIZE_MASK}
120 /** Constant for {@link #screenLayout}: a {@link #SCREENLAYOUT_SIZE_MASK}
129 /** Constant for {@link #screenLayout}: bits that encode the aspect ratio. */
131 /** Constant for {@link #screenLayout}: a {@link #SCREENLAYOUT_LONG_MASK}
134 /** Constant for {@link #screenLayout}: a {@link #SCREENLAYOUT_LONG_MASK}
139 /** Constant for {@link #screenLayout}
190 public int screenLayout; field in class:Configuration
1327 getScreenLayoutNoDirection(int screenLayout) argument
[all...]
H A DCompatibilityInfo.java95 public CompatibilityInfo(ApplicationInfo appInfo, int screenLayout, int sw, argument
198 switch (screenLayout&Configuration.SCREENLAYOUT_SIZE_MASK) {
217 if ((screenLayout&Configuration.SCREENLAYOUT_COMPAT_NEEDED) != 0) {
456 inoutConfig.screenLayout =
457 (inoutConfig.screenLayout&~Configuration.SCREENLAYOUT_SIZE_MASK)
H A DAssetManager.java681 int screenLayout, int uiMode, int majorVersion);
677 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 DResources.java1818 mConfiguration.screenLayout, mConfiguration.uiMode,
/frameworks/base/tools/aapt/
H A DAaptConfig.cpp252 } else if ((config->screenLayout & ResTable_config::MASK_SCREENSIZE)
254 || (config->screenLayout & ResTable_config::MASK_SCREENLONG)
330 if (out) out->screenLayout =
331 (out->screenLayout&~ResTable_config::MASK_LAYOUTDIR)
335 if (out) out->screenLayout =
336 (out->screenLayout&~ResTable_config::MASK_LAYOUTDIR)
340 if (out) out->screenLayout =
341 (out->screenLayout&~ResTable_config::MASK_LAYOUTDIR)
351 if (out) out->screenLayout =
352 (out->screenLayout
[all...]
H A DCommand.cpp620 config.screenLayout |= ResTable_config::SCREENSIZE_NORMAL;
/frameworks/base/native/android/
H A Dconfiguration.cpp96 return config->screenLayout&ResTable_config::MASK_SCREENSIZE;
100 return (config->screenLayout&ResTable_config::MASK_SCREENLONG)
127 return (config->screenLayout&ResTable_config::MASK_LAYOUTDIR)
186 config->screenLayout = (config->screenLayout&~ResTable_config::MASK_SCREENSIZE)
191 config->screenLayout = (config->screenLayout&~ResTable_config::MASK_SCREENLONG)
219 config->screenLayout = (config->screenLayout&~ResTable_config::MASK_LAYOUTDIR)
/frameworks/base/core/jni/
H A Dandroid_content_res_Configuration.cpp32 jfieldID screenLayout; member in struct:android::__anon788
50 out->screenLayout = env->GetIntField(clazz, gConfigurationClassInfo.screenLayout);
92 GET_FIELD_ID(gConfigurationClassInfo.screenLayout, clazz,
93 "screenLayout", "I");
H A Dandroid_util_AssetManager.cpp603 jint screenLayout, jint uiMode,
629 config.screenLayout = (uint8_t)screenLayout;
594 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/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DRenderAction.java328 config.screenLayout |= Configuration.SCREENLAYOUT_SIZE_SMALL;
331 config.screenLayout |= Configuration.SCREENLAYOUT_SIZE_NORMAL;
334 config.screenLayout |= Configuration.SCREENLAYOUT_SIZE_LARGE;
337 config.screenLayout |= Configuration.SCREENLAYOUT_SIZE_XLARGE;
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp1819 diff = (int32_t)(screenLayout - o.screenLayout);
1845 if ((screenLayout & MASK_LAYOUTDIR) != (o.screenLayout & MASK_LAYOUTDIR)) {
1846 return (screenLayout & MASK_LAYOUTDIR) < (o.screenLayout & MASK_LAYOUTDIR) ? -1 : 1;
1875 if (screenLayout != o.screenLayout) {
1876 return screenLayout < o.screenLayout
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DCompatModePackages.java172 CompatibilityInfo ci = new CompatibilityInfo(ai, mService.mConfiguration.screenLayout,
182 mService.mConfiguration.screenLayout,
369 final int screenLayout = mService.mConfiguration.screenLayout;
387 CompatibilityInfo info = new CompatibilityInfo(ai, screenLayout,
/frameworks/base/core/java/android/app/
H A DResourcesManager.java118 int sl = Configuration.resetScreenLayout(config.screenLayout);
121 config.screenLayout = Configuration.reduceScreenLayout(sl,
125 config.screenLayout = Configuration.reduceScreenLayout(sl,
/frameworks/base/tests/DpiTest/src/com/google/android/test/dpi/
H A DDpiTestActivity.java66 getResources().getConfiguration().screenLayout,
/frameworks/base/include/androidfw/
H A DResourceTypes.h1046 // screenLayout bits for screen size class.
1054 // screenLayout bits for wide/long screen variation.
1061 // screenLayout bits for layout direction.
1090 uint8_t screenLayout; member in struct:android::ResTable_config::__anon913::__anon914
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DActionBarActivityDelegateBase.java834 boolean isXLarge = (config.screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK) ==
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindow.java679 boolean isXLarge = (config.screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK) ==
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowManagerService.java7036 int sl = Configuration.resetScreenLayout(outConfig.screenLayout);
7042 outConfig.screenLayout = sl;

Completed in 1630 milliseconds