Home
last modified time | relevance | path

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

/frameworks/base/libs/androidfw/tests/
DConfig_test.cpp115 roundConfig.screenLayout2 = ResTable_config::SCREENROUND_YES; in TEST()
119 deviceConfig.screenLayout2 = ResTable_config::SCREENROUND_YES; in TEST()
123 deviceConfig.screenLayout2 = ResTable_config::SCREENROUND_NO; in TEST()
129 notRoundConfig.screenLayout2 = ResTable_config::SCREENROUND_NO; in TEST()
142 longRoundConfig.screenLayout2 = ResTable_config::SCREENROUND_YES; in TEST()
163 roundConfig.screenLayout2 = ResTable_config::SCREENROUND_YES; in TEST()
172 deviceConfig.screenLayout2 = ResTable_config::SCREENROUND_YES; in TEST()
182 targetConfigC.screenLayout2 = ResTable_config::SCREENROUND_YES; in TEST()
DConfigDescription_test.cpp92 config.screenLayout2 & android::ResTable_config::MASK_SCREENROUND); in TEST()
98 config.screenLayout2 & android::ResTable_config::MASK_SCREENROUND); in TEST()
/frameworks/base/libs/androidfw/
DConfigDescription.cpp201 out->screenLayout2 = in parseScreenRound()
202 (out->screenLayout2 & ~ResTable_config::MASK_SCREENROUND) | in parseScreenRound()
207 out->screenLayout2 = in parseScreenRound()
208 (out->screenLayout2 & ~ResTable_config::MASK_SCREENROUND) | in parseScreenRound()
213 out->screenLayout2 = in parseScreenRound()
214 (out->screenLayout2 & ~ResTable_config::MASK_SCREENROUND) | in parseScreenRound()
867 } else if (config->screenLayout2 & ResTable_config::MASK_SCREENROUND) { in ApplyVersionForCompatibility()
957 if ((screenLayout2 | o.screenLayout2) & MASK_SCREENROUND) { in HasHigherPrecedenceThan()
958 return !(o.screenLayout2 & MASK_SCREENROUND); in HasHigherPrecedenceThan()
1009 !pred(screenLayout2 & MASK_SCREENROUND, in ConflictsWith()
[all …]
DResourceTypes.cpp2197 if (screenLayout2 != o.screenLayout2) { in compare()
2198 return (screenLayout2 > o.screenLayout2) ? 1 : -1; in compare()
2266 if (screenLayout2 != o.screenLayout2) { in compareLogical()
2267 return screenLayout2 < o.screenLayout2 ? -1 : 1; in compareLogical()
2296 …if ((screenLayout2 & MASK_SCREENROUND) != (o.screenLayout2 & MASK_SCREENROUND)) diffs |= CONFIG_SC… in diff()
2413 if (screenLayout2 || o.screenLayout2) { in isMoreSpecificThan()
2414 if (((screenLayout2^o.screenLayout2) & MASK_SCREENROUND) != 0) { in isMoreSpecificThan()
2415 if (!(screenLayout2 & MASK_SCREENROUND)) return false; in isMoreSpecificThan()
2416 if (!(o.screenLayout2 & MASK_SCREENROUND)) return true; in isMoreSpecificThan()
2746 if (screenLayout2 || o.screenLayout2) { in isBetterThan()
[all …]
/frameworks/base/tools/aapt/tests/
DAaptConfig_test.cpp90 config.screenLayout2 & android::ResTable_config::MASK_SCREENROUND); in TEST()
96 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/
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/tools/aapt2/test/
DBuilders.h300 ConfigDescriptionBuilder& setScreenLayout2(uint8_t screenLayout2) { in setScreenLayout2() argument
301 config_.screenLayout2 = screenLayout2; in setScreenLayout2()
/frameworks/base/tools/aapt2/format/proto/
DProtoDeserialize.cpp145 out_config->screenLayout2 = in DeserializeConfigFromPb()
146 (out_config->screenLayout2 & ~ConfigDescription::MASK_SCREENROUND) | in DeserializeConfigFromPb()
151 out_config->screenLayout2 = in DeserializeConfigFromPb()
152 (out_config->screenLayout2 & ~ConfigDescription::MASK_SCREENROUND) | in DeserializeConfigFromPb()
DProtoSerialize.cpp120 switch (config.screenLayout2 & ConfigDescription::MASK_SCREENROUND) { in SerializeConfig()
/frameworks/base/libs/androidfw/include/androidfw/
DResourceTypes.h1238 uint8_t screenLayout2; // Contains round/notround qualifier. member
/frameworks/base/core/jni/
Dandroid_util_AssetManager.cpp395 configuration.screenLayout2 = in NativeSetConfiguration()