HomeSort by relevance Sort by last modified time
    Searched refs:screenLayoutSize (Results 1 - 5 of 5) sorted by null

  /packages/experimental/LoaderApp/src/com/android/loaderapp/
ViewContact.java 31 int screenLayoutSize = config.screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK;
32 if (screenLayoutSize == Configuration.SCREENLAYOUT_SIZE_LARGE) {
FrontDoor.java 44 int screenLayoutSize = config.screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK;
45 if (screenLayoutSize == Configuration.SCREENLAYOUT_SIZE_XLARGE) {
  /cts/tests/tests/dpi/src/android/dpi/cts/
ConfigurationScreenLayoutTest.java 93 int screenLayoutSize;
108 screenLayoutSize = Configuration.SCREENLAYOUT_SIZE_SMALL;
112 screenLayoutSize = Configuration.SCREENLAYOUT_SIZE_XLARGE;
114 screenLayoutSize = Configuration.SCREENLAYOUT_SIZE_LARGE;
116 screenLayoutSize = Configuration.SCREENLAYOUT_SIZE_NORMAL;
131 if (screenLayoutSize < curSize) {
133 | screenLayoutSize;
  /packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/
ContactsListFragment.java 160 int screenLayoutSize = config.screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK;
161 if (screenLayoutSize == Configuration.SCREENLAYOUT_SIZE_XLARGE) {
  /frameworks/base/core/java/android/content/res/
Configuration.java 201 int screenLayoutSize;
212 screenLayoutSize = SCREENLAYOUT_SIZE_SMALL;
220 screenLayoutSize = SCREENLAYOUT_SIZE_XLARGE;
224 screenLayoutSize = SCREENLAYOUT_SIZE_LARGE;
226 screenLayoutSize = SCREENLAYOUT_SIZE_NORMAL;
256 if (screenLayoutSize < curSize) {
257 curLayout = (curLayout&~SCREENLAYOUT_SIZE_MASK) | screenLayoutSize;
    [all...]

Completed in 92 milliseconds