Searched refs:IsAttributeReference (Results 1 – 3 of 3) sorted by relevance
134 EXPECT_TRUE(ResourceUtils::IsAttributeReference("?android")); in TEST()135 EXPECT_TRUE(ResourceUtils::IsAttributeReference("?android:foo")); in TEST()136 EXPECT_TRUE(ResourceUtils::IsAttributeReference("?attr/foo")); in TEST()137 EXPECT_TRUE(ResourceUtils::IsAttributeReference("?android:attr/foo")); in TEST()141 EXPECT_FALSE(ResourceUtils::IsAttributeReference("?style/foo")); in TEST()142 EXPECT_FALSE(ResourceUtils::IsAttributeReference("?android:style/foo")); in TEST()143 EXPECT_FALSE(ResourceUtils::IsAttributeReference("?android:")); in TEST()144 EXPECT_FALSE(ResourceUtils::IsAttributeReference("?android:attr/")); in TEST()145 EXPECT_FALSE(ResourceUtils::IsAttributeReference("?:attr/")); in TEST()146 EXPECT_FALSE(ResourceUtils::IsAttributeReference("?:attr/foo")); in TEST()[all …]
73 bool IsAttributeReference(const android::StringPiece& str);
242 bool IsAttributeReference(const StringPiece& str) { in IsAttributeReference() function