Home | History | Annotate | Download | only in aapt2

Lines Matching refs:screenLayout

105       out->screenLayout =
106 (out->screenLayout & ~ResTable_config::MASK_LAYOUTDIR) |
111 out->screenLayout =
112 (out->screenLayout & ~ResTable_config::MASK_LAYOUTDIR) |
117 out->screenLayout =
118 (out->screenLayout & ~ResTable_config::MASK_LAYOUTDIR) |
129 out->screenLayout =
130 (out->screenLayout & ~ResTable_config::MASK_SCREENSIZE) |
135 out->screenLayout =
136 (out->screenLayout & ~ResTable_config::MASK_SCREENSIZE) |
141 out->screenLayout =
142 (out->screenLayout & ~ResTable_config::MASK_SCREENSIZE) |
147 out->screenLayout =
148 (out->screenLayout & ~ResTable_config::MASK_SCREENSIZE) |
153 out->screenLayout =
154 (out->screenLayout & ~ResTable_config::MASK_SCREENSIZE) |
165 out->screenLayout =
166 (out->screenLayout & ~ResTable_config::MASK_SCREENLONG) |
171 out->screenLayout =
172 (out->screenLayout & ~ResTable_config::MASK_SCREENLONG) |
177 out->screenLayout =
178 (out->screenLayout & ~ResTable_config::MASK_SCREENLONG) |
860 } else if ((config->screenLayout & ResTable_config::MASK_SCREENSIZE) !=
862 (config->screenLayout & ResTable_config::MASK_SCREENLONG) !=
899 if ((screenLayout | o.screenLayout) & MASK_LAYOUTDIR) {
900 return !(o.screenLayout & MASK_LAYOUTDIR);
906 if ((screenLayout | o.screenLayout) & MASK_SCREENSIZE) {
907 return !(o.screenLayout & MASK_SCREENSIZE);
909 if ((screenLayout | o.screenLayout) & MASK_SCREENLONG) {
910 return !(o.screenLayout & MASK_SCREENLONG);
957 !pred(screenLayout & MASK_LAYOUTDIR,
958 o.screenLayout & MASK_LAYOUTDIR) ||
959 !pred(screenLayout & MASK_SCREENLONG,
960 o.screenLayout & MASK_SCREENLONG) ||
961 !pred(screenLayout & MASK_UI_MODE_TYPE,
962 o.screenLayout & MASK_UI_MODE_TYPE) ||