Lines Matching refs:pool

40   StringPool pool;  in TEST()  local
43 a.values[Plural::One] = util::make_unique<String>(pool.MakeRef("one")); in TEST()
44 a.values[Plural::Other] = util::make_unique<String>(pool.MakeRef("other")); in TEST()
47 b.values[Plural::One] = util::make_unique<String>(pool.MakeRef("une")); in TEST()
48 b.values[Plural::Other] = util::make_unique<String>(pool.MakeRef("autre")); in TEST()
51 c.values[Plural::One] = util::make_unique<String>(pool.MakeRef("one")); in TEST()
52 c.values[Plural::Other] = util::make_unique<String>(pool.MakeRef("other")); in TEST()
59 StringPool pool; in TEST() local
62 a.values[Plural::One] = util::make_unique<String>(pool.MakeRef("one")); in TEST()
63 a.values[Plural::Other] = util::make_unique<String>(pool.MakeRef("other")); in TEST()
65 CloningValueTransformer cloner(&pool); in TEST()
71 StringPool pool; in TEST() local
74 a.elements.push_back(util::make_unique<String>(pool.MakeRef("one"))); in TEST()
75 a.elements.push_back(util::make_unique<String>(pool.MakeRef("two"))); in TEST()
78 b.elements.push_back(util::make_unique<String>(pool.MakeRef("une"))); in TEST()
79 b.elements.push_back(util::make_unique<String>(pool.MakeRef("deux"))); in TEST()
82 c.elements.push_back(util::make_unique<String>(pool.MakeRef("uno"))); in TEST()
85 d.elements.push_back(util::make_unique<String>(pool.MakeRef("one"))); in TEST()
86 d.elements.push_back(util::make_unique<String>(pool.MakeRef("two"))); in TEST()
95 StringPool pool; in TEST() local
98 a.elements.push_back(util::make_unique<String>(pool.MakeRef("one"))); in TEST()
99 a.elements.push_back(util::make_unique<String>(pool.MakeRef("two"))); in TEST()
101 CloningValueTransformer cloner(&pool); in TEST()
107 StringPool pool; in TEST() local
207 StringPool pool; in TEST() local
211 .AddItem("android:attr/a", util::make_unique<String>(pool.MakeRef("OverlayFooA"))) in TEST()
212 .AddItem("android:attr/b", util::make_unique<String>(pool.MakeRef("FooB"))) in TEST()
213 .AddItem("android:attr/c", util::make_unique<String>(pool.MakeRef("OverlayFooC"))) in TEST()