Lines Matching refs:styleable
257 <declare-styleable name="bar">
259 </declare-styleable>)";
264 EXPECT_THAT(test::GetValueForConfig<Styleable>(&table_, "styleable/bar", watch_config), IsNull());
268 EXPECT_THAT(test::GetValue<Styleable>(&table_, "styleable/bar"), NotNull());
288 <declare-styleable name="Styleable">
290 </declare-styleable>
301 <declare-styleable name="Theme">
303 </declare-styleable>
304 <declare-styleable name="Window">
306 </declare-styleable>)";
473 <declare-styleable name="foo">
479 </declare-styleable>)";
483 table_.FindResource(test::ParseNameOrDie("styleable/foo"));
502 Styleable* styleable = test::GetValue<Styleable>(&table_, "styleable/foo");
503 ASSERT_THAT(styleable, NotNull());
504 ASSERT_THAT(styleable->entries, SizeIs(3));
506 EXPECT_THAT(styleable->entries[0].name, Eq(make_value(test::ParseNameOrDie("attr/bar"))));
507 EXPECT_THAT(styleable->entries[1].name, Eq(make_value(test::ParseNameOrDie("attr/bat"))));
508 EXPECT_THAT(styleable->entries[2].name, Eq(make_value(test::ParseNameOrDie("attr/baz"))));
513 <declare-styleable xmlns:privAndroid="http://schemas.android.com/apk/prv/res/android"
517 </declare-styleable>)";
519 Styleable* styleable = test::GetValue<Styleable>(&table_, "styleable/foo");
520 ASSERT_THAT(styleable, NotNull());
521 ASSERT_THAT(styleable->entries, SizeIs(2));
523 EXPECT_TRUE(styleable->entries[0].private_reference);
524 ASSERT_TRUE(styleable->entries[0].name);
525 EXPECT_THAT(styleable->entries[0].name.value().package, Eq("android"));
527 EXPECT_TRUE(styleable->entries[1].private_reference);
528 ASSERT_TRUE(styleable->entries[1].name);
529 EXPECT_THAT(styleable->entries[1].name.value().package, Eq("android"));
641 // We only care about declare-styleable and enum/flag attributes because
644 <declare-styleable name="foo">
647 </declare-styleable>
655 Styleable* styleable = test::GetValue<Styleable>(&table_, "styleable/foo");
656 ASSERT_THAT(styleable, NotNull());
657 ASSERT_THAT(styleable->entries, SizeIs(1));
658 EXPECT_THAT(styleable->entries[0].GetComment(), Eq("The name of the bar"));