Home
last modified time | relevance | path

Searched refs:screenLayout2 (Results 1 – 12 of 12) 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()
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.cpp183 out->screenLayout2 = in parseScreenRound()
184 (out->screenLayout2 & ~ResTable_config::MASK_SCREENROUND) | in parseScreenRound()
189 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()
840 } else if (config->screenLayout2 & ResTable_config::MASK_SCREENROUND) { in ApplyVersionForCompatibility()
926 if ((screenLayout2 | o.screenLayout2) & MASK_SCREENROUND) { in HasHigherPrecedenceThan()
927 return !(o.screenLayout2 & MASK_SCREENROUND); in HasHigherPrecedenceThan()
977 !pred(screenLayout2 & MASK_SCREENROUND, in ConflictsWith()
[all …]
DResourceTypes.cpp1995 if (screenLayout2 != o.screenLayout2) { in compare()
1996 return (screenLayout2 > o.screenLayout2) ? 1 : -1; in compare()
2062 if (screenLayout2 != o.screenLayout2) { in compareLogical()
2063 return screenLayout2 < o.screenLayout2 ? -1 : 1; in compareLogical()
2092 …if ((screenLayout2 & MASK_SCREENROUND) != (o.screenLayout2 & MASK_SCREENROUND)) diffs |= CONFIG_SC… in diff()
2201 if (screenLayout2 || o.screenLayout2) { in isMoreSpecificThan()
2202 if (((screenLayout2^o.screenLayout2) & MASK_SCREENROUND) != 0) { in isMoreSpecificThan()
2203 if (!(screenLayout2 & MASK_SCREENROUND)) return false; in isMoreSpecificThan()
2204 if (!(o.screenLayout2 & MASK_SCREENROUND)) return true; in isMoreSpecificThan()
2510 if (screenLayout2 || o.screenLayout2) { in isBetterThan()
[all …]
/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/tools/aapt2/test/
DBuilders.h299 ConfigDescriptionBuilder& setScreenLayout2(uint8_t screenLayout2) { in setScreenLayout2() argument
300 config_.screenLayout2 = screenLayout2; in setScreenLayout2()
/frameworks/base/tools/aapt2/format/proto/
DProtoDeserialize.cpp143 out_config->screenLayout2 = in DeserializeConfigFromPb()
144 (out_config->screenLayout2 & ~ConfigDescription::MASK_SCREENROUND) | in DeserializeConfigFromPb()
149 out_config->screenLayout2 = in DeserializeConfigFromPb()
150 (out_config->screenLayout2 & ~ConfigDescription::MASK_SCREENROUND) | in DeserializeConfigFromPb()
DProtoSerialize.cpp115 switch (config.screenLayout2 & ConfigDescription::MASK_SCREENROUND) { in SerializeConfig()
/frameworks/base/libs/androidfw/include/androidfw/
DResourceTypes.h1185 uint8_t screenLayout2; // Contains round/notround qualifier. member
/frameworks/base/core/jni/
Dandroid_util_AssetManager.cpp529 configuration.screenLayout2 = in NativeSetConfiguration()