Lines Matching refs:second
176 BitVector second(5, true, Allocator::GetMallocAllocator()); in TEST() local
179 second.SetBit(64); in TEST()
181 bool changed = first.UnionIfNotIn(&second, &third); in TEST()
188 BitVector second(5, true, Allocator::GetMallocAllocator()); in TEST() local
191 second.SetBit(64); in TEST()
192 bool changed = first.UnionIfNotIn(&second, &third); in TEST()
202 BitVector second(5, true, Allocator::GetMallocAllocator()); in TEST() local
204 EXPECT_TRUE(first.IsSubsetOf(&second)); in TEST()
205 second.SetBit(4); in TEST()
206 EXPECT_TRUE(first.IsSubsetOf(&second)); in TEST()
211 BitVector second(5, true, Allocator::GetMallocAllocator()); in TEST() local
214 EXPECT_FALSE(first.IsSubsetOf(&second)); in TEST()
215 second.SetBit(4); in TEST()
216 EXPECT_FALSE(first.IsSubsetOf(&second)); in TEST()
221 BitVector second(5, true, Allocator::GetMallocAllocator()); in TEST() local
226 second.SetBit(16); in TEST()
227 second.SetBit(32); in TEST()
228 second.SetBit(48); in TEST()
230 EXPECT_TRUE(first.IsSubsetOf(&second)); in TEST()
231 second.SetBit(8); in TEST()
232 EXPECT_TRUE(first.IsSubsetOf(&second)); in TEST()
233 second.SetBit(40); in TEST()
234 EXPECT_TRUE(first.IsSubsetOf(&second)); in TEST()
235 second.SetBit(52); in TEST()
236 EXPECT_TRUE(first.IsSubsetOf(&second)); in TEST()
239 EXPECT_FALSE(first.IsSubsetOf(&second)); in TEST()