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) !=
919 if ((screenLayout | o.screenLayout) & MASK_LAYOUTDIR) {
920 return !(o.screenLayout & MASK_LAYOUTDIR);
926 if ((screenLayout | o.screenLayout) & MASK_SCREENSIZE) {
927 return !(o.screenLayout & MASK_SCREENSIZE);
929 if ((screenLayout | o.screenLayout) & MASK_SCREENLONG) {
930 return !(o.screenLayout & MASK_SCREENLONG);
977 !pred(screenLayout & MASK_LAYOUTDIR,
978 o.screenLayout & MASK_LAYOUTDIR) ||
979 !pred(screenLayout & MASK_SCREENLONG,
980 o.screenLayout & MASK_SCREENLONG) ||