Home
last modified time | relevance | path

Searched refs:MASK_SCREENLONG (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/native/android/
Dconfiguration.cpp100 return (config->screenLayout&ResTable_config::MASK_SCREENLONG) in AConfiguration_getScreenLong()
195 config->screenLayout = (config->screenLayout&~ResTable_config::MASK_SCREENLONG) in AConfiguration_setScreenLong()
196 | ((screenLong<<ResTable_config::SHIFT_SCREENLONG)&ResTable_config::MASK_SCREENLONG); in AConfiguration_setScreenLong()
/frameworks/base/tools/aapt2/
DConfigDescription.cpp166 (out->screenLayout & ~ResTable_config::MASK_SCREENLONG) | in parseScreenLayoutLong()
172 (out->screenLayout & ~ResTable_config::MASK_SCREENLONG) | in parseScreenLayoutLong()
178 (out->screenLayout & ~ResTable_config::MASK_SCREENLONG) | in parseScreenLayoutLong()
862 (config->screenLayout & ResTable_config::MASK_SCREENLONG) != in ApplyVersionForCompatibility()
909 if ((screenLayout | o.screenLayout) & MASK_SCREENLONG) { in HasHigherPrecedenceThan()
910 return !(o.screenLayout & MASK_SCREENLONG); in HasHigherPrecedenceThan()
959 !pred(screenLayout & MASK_SCREENLONG, in ConflictsWith()
960 o.screenLayout & MASK_SCREENLONG) || in ConflictsWith()
/frameworks/base/tools/aapt/
DAaptConfig.cpp288 || (config->screenLayout & ResTable_config::MASK_SCREENLONG) in applyVersionForCompatibility()
415 (out->screenLayout&~ResTable_config::MASK_SCREENLONG) in parseScreenLayoutLong()
420 (out->screenLayout&~ResTable_config::MASK_SCREENLONG) in parseScreenLayoutLong()
425 (out->screenLayout&~ResTable_config::MASK_SCREENLONG) in parseScreenLayoutLong()
/frameworks/base/libs/androidfw/
DResourceTypes.cpp2100 if (((screenLayout^o.screenLayout) & MASK_SCREENLONG) != 0) { in isMoreSpecificThan()
2101 if (!(screenLayout & MASK_SCREENLONG)) return false; in isMoreSpecificThan()
2102 if (!(o.screenLayout & MASK_SCREENLONG)) return true; in isMoreSpecificThan()
2398 if (((screenLayout^o.screenLayout) & MASK_SCREENLONG) != 0 in isBetterThan()
2399 && (requested->screenLayout & MASK_SCREENLONG)) { in isBetterThan()
2400 return (screenLayout & MASK_SCREENLONG); in isBetterThan()
2641 const int screenLong = screenLayout&MASK_SCREENLONG; in match()
2642 const int setScreenLong = settings.screenLayout&MASK_SCREENLONG; in match()
2974 if ((screenLayout&MASK_SCREENLONG) != 0) { in toString()
2976 switch (screenLayout&ResTable_config::MASK_SCREENLONG) { in toString()
[all …]
/frameworks/base/libs/androidfw/include/androidfw/
DResourceTypes.h1081 MASK_SCREENLONG = 0x30, enumerator