Home
last modified time | relevance | path

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

/frameworks/base/native/android/
Dconfiguration.cpp105 return (config->screenLayout&ResTable_config::MASK_SCREENLONG) in AConfiguration_getScreenLong()
200 config->screenLayout = (config->screenLayout&~ResTable_config::MASK_SCREENLONG) in AConfiguration_setScreenLong()
201 | ((screenLong<<ResTable_config::SHIFT_SCREENLONG)&ResTable_config::MASK_SCREENLONG); in AConfiguration_setScreenLong()
/frameworks/base/libs/androidfw/
DConfigDescription.cpp160 (out->screenLayout & ~ResTable_config::MASK_SCREENLONG) | in parseScreenLayoutLong()
166 (out->screenLayout & ~ResTable_config::MASK_SCREENLONG) | in parseScreenLayoutLong()
172 (out->screenLayout & ~ResTable_config::MASK_SCREENLONG) | in parseScreenLayoutLong()
856 (config->screenLayout & ResTable_config::MASK_SCREENLONG) != in ApplyVersionForCompatibility()
923 if ((screenLayout | o.screenLayout) & MASK_SCREENLONG) { in HasHigherPrecedenceThan()
924 return !(o.screenLayout & MASK_SCREENLONG); in HasHigherPrecedenceThan()
973 !pred(screenLayout & MASK_SCREENLONG, in ConflictsWith()
974 o.screenLayout & MASK_SCREENLONG) || in ConflictsWith()
DResourceTypes.cpp2195 if (((screenLayout^o.screenLayout) & MASK_SCREENLONG) != 0) { in isMoreSpecificThan()
2196 if (!(screenLayout & MASK_SCREENLONG)) return false; in isMoreSpecificThan()
2197 if (!(o.screenLayout & MASK_SCREENLONG)) return true; in isMoreSpecificThan()
2504 if (((screenLayout^o.screenLayout) & MASK_SCREENLONG) != 0 in isBetterThan()
2505 && (requested->screenLayout & MASK_SCREENLONG)) { in isBetterThan()
2506 return (screenLayout & MASK_SCREENLONG); in isBetterThan()
2747 const int screenLong = screenLayout&MASK_SCREENLONG; in match()
2748 const int setScreenLong = settings.screenLayout&MASK_SCREENLONG; in match()
3193 if ((screenLayout&MASK_SCREENLONG) != 0) { in toString()
3195 switch (screenLayout&ResTable_config::MASK_SCREENLONG) { in toString()
[all …]
/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/tools/aapt2/format/proto/
DProtoDeserialize.cpp128 out_config->screenLayout = (out_config->screenLayout & ~ConfigDescription::MASK_SCREENLONG) | in DeserializeConfigFromPb()
133 out_config->screenLayout = (out_config->screenLayout & ~ConfigDescription::MASK_SCREENLONG) | in DeserializeConfigFromPb()
DProtoSerialize.cpp103 switch (config.screenLayout & ConfigDescription::MASK_SCREENLONG) { in SerializeConfig()
/frameworks/base/libs/androidfw/include/androidfw/
DResourceTypes.h1099 MASK_SCREENLONG = 0x30, enumerator