Home
last modified time | relevance | path

Searched refs:screenLayout2 (Results 1 – 11 of 11) sorted by relevance

/frameworks/base/libs/androidfw/tests/
DConfig_test.cpp112 roundConfig.screenLayout2 = ResTable_config::SCREENROUND_YES; in TEST()
116 deviceConfig.screenLayout2 = ResTable_config::SCREENROUND_YES; in TEST()
120 deviceConfig.screenLayout2 = ResTable_config::SCREENROUND_NO; in TEST()
126 notRoundConfig.screenLayout2 = ResTable_config::SCREENROUND_NO; in TEST()
139 longRoundConfig.screenLayout2 = ResTable_config::SCREENROUND_YES; in TEST()
160 roundConfig.screenLayout2 = ResTable_config::SCREENROUND_YES; in TEST()
169 deviceConfig.screenLayout2 = ResTable_config::SCREENROUND_YES; in TEST()
179 targetConfigC.screenLayout2 = ResTable_config::SCREENROUND_YES; in TEST()
/frameworks/base/tools/aapt2/
DConfigDescription.cpp189 out->screenLayout2 = in parseScreenRound()
190 (out->screenLayout2 & ~ResTable_config::MASK_SCREENROUND) | in parseScreenRound()
195 out->screenLayout2 = in parseScreenRound()
196 (out->screenLayout2 & ~ResTable_config::MASK_SCREENROUND) | in parseScreenRound()
201 out->screenLayout2 = in parseScreenRound()
202 (out->screenLayout2 & ~ResTable_config::MASK_SCREENROUND) | in parseScreenRound()
846 } else if (config->screenLayout2 & ResTable_config::MASK_SCREENROUND) { in ApplyVersionForCompatibility()
932 if ((screenLayout2 | o.screenLayout2) & MASK_SCREENROUND) { in HasHigherPrecedenceThan()
933 return !(o.screenLayout2 & MASK_SCREENROUND); in HasHigherPrecedenceThan()
983 !pred(screenLayout2 & MASK_SCREENROUND, in ConflictsWith()
[all …]
DConfigDescription_test.cpp94 config.screenLayout2 & android::ResTable_config::MASK_SCREENROUND); in TEST()
100 config.screenLayout2 & android::ResTable_config::MASK_SCREENROUND); in TEST()
/frameworks/base/native/android/
Dconfiguration.cpp110 return (config->screenLayout2&ResTable_config::MASK_SCREENROUND); in AConfiguration_getScreenRound()
205 config->screenLayout2 = (config->screenLayout2&~ResTable_config::MASK_SCREENROUND) in AConfiguration_setScreenRound()
/frameworks/base/tools/aapt/tests/
DAaptConfig_test.cpp91 config.screenLayout2 & android::ResTable_config::MASK_SCREENROUND); in TEST()
97 config.screenLayout2 & android::ResTable_config::MASK_SCREENROUND); in TEST()
/frameworks/base/tools/aapt/
DAaptConfig.cpp273 } else if (config->screenLayout2 & ResTable_config::MASK_SCREENROUND) { in applyVersionForCompatibility()
434 if (out) out->screenLayout2 = in parseScreenRound()
435 (out->screenLayout2&~ResTable_config::MASK_SCREENROUND) in parseScreenRound()
439 if (out) out->screenLayout2 = in parseScreenRound()
440 (out->screenLayout2&~ResTable_config::MASK_SCREENROUND) in parseScreenRound()
444 if (out) out->screenLayout2 = in parseScreenRound()
445 (out->screenLayout2&~ResTable_config::MASK_SCREENROUND) in parseScreenRound()
/frameworks/base/libs/androidfw/
DResourceTypes.cpp1982 if (screenLayout2 != o.screenLayout2) { in compare()
1983 return (screenLayout2 > o.screenLayout2) ? 1 : -1; in compare()
2049 if (screenLayout2 != o.screenLayout2) { in compareLogical()
2050 return screenLayout2 < o.screenLayout2 ? -1 : 1; in compareLogical()
2079 …if ((screenLayout2 & MASK_SCREENROUND) != (o.screenLayout2 & MASK_SCREENROUND)) diffs |= CONFIG_SC… in diff()
2188 if (screenLayout2 || o.screenLayout2) { in isMoreSpecificThan()
2189 if (((screenLayout2^o.screenLayout2) & MASK_SCREENROUND) != 0) { in isMoreSpecificThan()
2190 if (!(screenLayout2 & MASK_SCREENROUND)) return false; in isMoreSpecificThan()
2191 if (!(o.screenLayout2 & MASK_SCREENROUND)) return true; in isMoreSpecificThan()
2497 if (screenLayout2 || o.screenLayout2) { in isBetterThan()
[all …]
/frameworks/base/tools/aapt2/format/proto/
DProtoDeserialize.cpp141 out_config->screenLayout2 = in DeserializeConfigFromPb()
142 (out_config->screenLayout2 & ~ConfigDescription::MASK_SCREENROUND) | in DeserializeConfigFromPb()
147 out_config->screenLayout2 = in DeserializeConfigFromPb()
148 (out_config->screenLayout2 & ~ConfigDescription::MASK_SCREENROUND) | in DeserializeConfigFromPb()
DProtoSerialize.cpp113 switch (config.screenLayout2 & ConfigDescription::MASK_SCREENROUND) { in SerializeConfig()
/frameworks/base/libs/androidfw/include/androidfw/
DResourceTypes.h1179 uint8_t screenLayout2; // Contains round/notround qualifier. member
/frameworks/base/core/jni/
Dandroid_util_AssetManager.cpp373 configuration.screenLayout2 = in NativeSetConfiguration()