Home | History | Annotate | Download | only in android

Lines Matching defs:screenLayout

139     int screenLayout = 0;
151 screenLayout = UnsignedBytes.toInt(buffer.get());
179 sdkVersion, minorVersion, screenLayout, uiMode, smallestScreenWidthDp, screenWidthDp,
218 // screenLayout bits for layout direction.
433 // screenLayout bits for wide/long screen variation.
634 screenWidth, screenHeight, sdkVersion, minorVersion, screenLayout, uiMode,
641 int screenWidth, int screenHeight, int sdkVersion, int minorVersion, int screenLayout,
660 this.screenLayout = screenLayout;
681 public int screenLayout;
684 return screenLayout & SCREENLAYOUT_LAYOUTDIR_MASK;
688 screenLayout = (screenLayout & ~SCREENLAYOUT_LAYOUTDIR_MASK) | value;
692 return screenLayout & SCREENLAYOUT_SIZE_MASK;
696 screenLayout = (screenLayout & ~SCREENLAYOUT_SIZE_MASK) | value;
700 return screenLayout & SCREENLAYOUT_LONG_MASK;
704 screenLayout = (screenLayout & ~SCREENLAYOUT_LONG_MASK) | value;
745 /** An extension to {@link #screenLayout}. Contains round/notround qualifier. */
876 o.screenLayout,
952 diff = (screenLayout - o.screenLayout);
983 && screenLayout == 0
1119 if (isTruthy(screenLayout) || isTruthy(o.screenLayout)) {
1120 if (isTruthy((screenLayout^o.screenLayout) & MASK_LAYOUTDIR)
1121 && isTruthy(requested.screenLayout & MASK_LAYOUTDIR)) {
1122 int myLayoutDir = screenLayout & MASK_LAYOUTDIR;
1123 int oLayoutDir = o.screenLayout & MASK_LAYOUTDIR;
1161 if (isTruthy(screenLayout) || isTruthy(o.screenLayout)) {
1162 if (isTruthy((screenLayout^o.screenLayout) & MASK_SCREENSIZE)
1163 && isTruthy(requested.screenLayout & MASK_SCREENSIZE)) {
1168 int mySL = (screenLayout & MASK_SCREENSIZE);
1169 int oSL = (o.screenLayout & MASK_SCREENSIZE);
1172 if ((requested.screenLayout & MASK_SCREENSIZE) >= SCREENSIZE_NORMAL) {
1189 if (((screenLayout^o.screenLayout) & MASK_SCREENLONG) != 0
1190 && isTruthy(requested.screenLayout & MASK_SCREENLONG)) {
1191 return isTruthy(screenLayout & MASK_SCREENLONG);
1427 final int layoutDir = screenLayout&MASK_LAYOUTDIR;
1428 final int setLayoutDir = settings.screenLayout&MASK_LAYOUTDIR;
1433 final int screenSize = screenLayout&MASK_SCREENSIZE;
1434 final int setScreenSize = settings.screenLayout&MASK_SCREENSIZE;
1441 final int screenLong = screenLayout&MASK_SCREENLONG;
1442 final int setScreenLong = settings.screenLayout&MASK_SCREENLONG;
1778 uint8_t screenLayout;
1786 return ((screenLayout & 0xff) << 24) | ((uiMode * 0xff) << 16) | (smallestScreenWidthDp & 0xffff);
2052 if (isTruthy(screenLayout) || isTruthy(o.screenLayout)) {
2053 if (((screenLayout^o.screenLayout) & MASK_LAYOUTDIR) != 0) {
2054 if (!isTruthy((screenLayout & MASK_LAYOUTDIR))) return false;
2055 if (!isTruthy((o.screenLayout & MASK_LAYOUTDIR))) return true;
2074 if (isTruthy(screenLayout) || isTruthy(o.screenLayout)) {
2075 if (((screenLayout^o.screenLayout) & MASK_SCREENSIZE) != 0) {
2076 if (!isTruthy((screenLayout & MASK_SCREENSIZE))) return false;
2077 if (!isTruthy((o.screenLayout & MASK_SCREENSIZE))) return true;
2079 if (((screenLayout^o.screenLayout) & MASK_SCREENLONG) != 0) {
2080 if (!isTruthy((screenLayout & MASK_SCREENLONG))) return false;
2081 if (!isTruthy((o.screenLayout & MASK_SCREENLONG))) return true;