Lines Matching refs:second
147 BitVector second(5, true, Allocator::GetMallocAllocator()); in TEST() local
150 second.SetBit(64); in TEST()
152 bool changed = first.UnionIfNotIn(&second, &third); in TEST()
159 BitVector second(5, true, Allocator::GetMallocAllocator()); in TEST() local
162 second.SetBit(64); in TEST()
163 bool changed = first.UnionIfNotIn(&second, &third); in TEST()
173 BitVector second(5, true, Allocator::GetMallocAllocator()); in TEST() local
175 EXPECT_TRUE(first.IsSubsetOf(&second)); in TEST()
176 second.SetBit(4); in TEST()
177 EXPECT_TRUE(first.IsSubsetOf(&second)); in TEST()
182 BitVector second(5, true, Allocator::GetMallocAllocator()); in TEST() local
185 EXPECT_FALSE(first.IsSubsetOf(&second)); in TEST()
186 second.SetBit(4); in TEST()
187 EXPECT_FALSE(first.IsSubsetOf(&second)); in TEST()
192 BitVector second(5, true, Allocator::GetMallocAllocator()); in TEST() local
197 second.SetBit(16); in TEST()
198 second.SetBit(32); in TEST()
199 second.SetBit(48); in TEST()
201 EXPECT_TRUE(first.IsSubsetOf(&second)); in TEST()
202 second.SetBit(8); in TEST()
203 EXPECT_TRUE(first.IsSubsetOf(&second)); in TEST()
204 second.SetBit(40); in TEST()
205 EXPECT_TRUE(first.IsSubsetOf(&second)); in TEST()
206 second.SetBit(52); in TEST()
207 EXPECT_TRUE(first.IsSubsetOf(&second)); in TEST()
210 EXPECT_FALSE(first.IsSubsetOf(&second)); in TEST()