Home
last modified time | relevance | path

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

/frameworks/base/tools/aapt2/
DResourceValues_test.cpp275 EXPECT_TRUE(attr_one.IsCompatibleWith(attr_one)); in TEST()
276 EXPECT_TRUE(attr_one.IsCompatibleWith(attr_two)); in TEST()
277 EXPECT_FALSE(attr_one.IsCompatibleWith(attr_three)); in TEST()
278 EXPECT_FALSE(attr_one.IsCompatibleWith(attr_four)); in TEST()
280 EXPECT_TRUE(attr_two.IsCompatibleWith(attr_one)); in TEST()
281 EXPECT_TRUE(attr_two.IsCompatibleWith(attr_two)); in TEST()
282 EXPECT_FALSE(attr_two.IsCompatibleWith(attr_three)); in TEST()
283 EXPECT_FALSE(attr_two.IsCompatibleWith(attr_four)); in TEST()
285 EXPECT_FALSE(attr_three.IsCompatibleWith(attr_one)); in TEST()
286 EXPECT_FALSE(attr_three.IsCompatibleWith(attr_two)); in TEST()
[all …]
DResourceValues.h311 bool IsCompatibleWith(const Attribute& attr) const;
DResourceTable.cpp307 if (existing_attr->IsCompatibleWith(*incoming_attr)) { in ResolveValueCollision()
DResourceValues.cpp576 bool Attribute::IsCompatibleWith(const Attribute& attr) const { in IsCompatibleWith() function in aapt::Attribute
/frameworks/base/tools/aapt2/optimize/
DResourceDeduper.cpp71 if (node_configuration.IsCompatibleWith(sibling->config) && in VisitConfig()
/frameworks/base/libs/androidfw/include/androidfw/
DConfigDescription.h132 bool IsCompatibleWith(const ConfigDescription& o) const;
/frameworks/base/libs/androidfw/
DConfigDescription.cpp989 bool ConfigDescription::IsCompatibleWith(const ConfigDescription& o) const { in IsCompatibleWith() function in android::ConfigDescription