Home
last modified time | relevance | path

Searched refs:MASK_SCREENROUND (Results 1 – 9 of 9) sorted by relevance

/aosp12/frameworks/base/libs/androidfw/
H A DConfigDescription.cpp184 (out->screenLayout2 & ~ResTable_config::MASK_SCREENROUND) | in parseScreenRound()
190 (out->screenLayout2 & ~ResTable_config::MASK_SCREENROUND) | in parseScreenRound()
196 (out->screenLayout2 & ~ResTable_config::MASK_SCREENROUND) | in parseScreenRound()
840 } else if (config->screenLayout2 & ResTable_config::MASK_SCREENROUND) { in ApplyVersionForCompatibility()
929 if ((screenLayout2 | o.screenLayout2) & MASK_SCREENROUND) { in HasHigherPrecedenceThan()
930 return !(o.screenLayout2 & MASK_SCREENROUND); in HasHigherPrecedenceThan()
980 !pred(screenLayout2 & MASK_SCREENROUND, in ConflictsWith()
981 o.screenLayout2 & MASK_SCREENROUND) || in ConflictsWith()
H A DResourceTypes.cpp2207 …if ((screenLayout2 & MASK_SCREENROUND) != (o.screenLayout2 & MASK_SCREENROUND)) diffs |= CONFIG_SC… in diff()
2317 if (((screenLayout2^o.screenLayout2) & MASK_SCREENROUND) != 0) { in isMoreSpecificThan()
2318 if (!(screenLayout2 & MASK_SCREENROUND)) return false; in isMoreSpecificThan()
2319 if (!(o.screenLayout2 & MASK_SCREENROUND)) return true; in isMoreSpecificThan()
2626 if (((screenLayout2^o.screenLayout2) & MASK_SCREENROUND) != 0 && in isBetterThan()
2627 (requested->screenLayout2 & MASK_SCREENROUND)) { in isBetterThan()
2628 return screenLayout2 & MASK_SCREENROUND; in isBetterThan()
2887 const int screenRound = screenLayout2 & MASK_SCREENROUND; in match()
2888 const int setScreenRound = settings.screenLayout2 & MASK_SCREENROUND; in match()
3323 if ((screenLayout2&MASK_SCREENROUND) != 0) { in toString()
[all …]
/aosp12/frameworks/base/native/android/
H A Dconfiguration.cpp110 return (config->screenLayout2&ResTable_config::MASK_SCREENROUND); in AConfiguration_getScreenRound()
205 config->screenLayout2 = (config->screenLayout2&~ResTable_config::MASK_SCREENROUND) in AConfiguration_setScreenRound()
206 | (screenRound&ResTable_config::MASK_SCREENROUND); in AConfiguration_setScreenRound()
/aosp12/frameworks/base/tools/aapt/tests/
H A DAaptConfig_test.cpp90 config.screenLayout2 & android::ResTable_config::MASK_SCREENROUND); in TEST()
96 config.screenLayout2 & android::ResTable_config::MASK_SCREENROUND); in TEST()
/aosp12/frameworks/base/libs/androidfw/tests/
H A DConfigDescription_test.cpp92 config.screenLayout2 & android::ResTable_config::MASK_SCREENROUND); in TEST()
98 config.screenLayout2 & android::ResTable_config::MASK_SCREENROUND); in TEST()
/aosp12/frameworks/base/tools/aapt/
H A DAaptConfig.cpp273 } else if (config->screenLayout2 & ResTable_config::MASK_SCREENROUND) { in applyVersionForCompatibility()
435 (out->screenLayout2&~ResTable_config::MASK_SCREENROUND) in parseScreenRound()
440 (out->screenLayout2&~ResTable_config::MASK_SCREENROUND) in parseScreenRound()
445 (out->screenLayout2&~ResTable_config::MASK_SCREENROUND) in parseScreenRound()
/aosp12/frameworks/base/tools/aapt2/format/proto/
H A DProtoDeserialize.cpp146 (out_config->screenLayout2 & ~ConfigDescription::MASK_SCREENROUND) | in DeserializeConfigFromPb()
152 (out_config->screenLayout2 & ~ConfigDescription::MASK_SCREENROUND) | in DeserializeConfigFromPb()
H A DProtoSerialize.cpp117 switch (config.screenLayout2 & ConfigDescription::MASK_SCREENROUND) { in SerializeConfig()
/aosp12/frameworks/base/libs/androidfw/include/androidfw/
H A DResourceTypes.h1187 MASK_SCREENROUND = 0x03, enumerator