Lines Matching refs:birth_map
140 ThreadData::BirthMap birth_map; in TEST_F() local
142 data->SnapshotMaps(0, &birth_map, &deaths); in TEST_F()
143 EXPECT_EQ(0u, birth_map.size()); in TEST_F()
157 birth_map.clear(); in TEST_F()
159 data->SnapshotMaps(0, &birth_map, &deaths); in TEST_F()
160 EXPECT_EQ(0u, birth_map.size()); in TEST_F()
176 ThreadData::BirthMap birth_map; in TEST_F() local
178 data->SnapshotMaps(0, &birth_map, &deaths); in TEST_F()
179 EXPECT_EQ(1u, birth_map.size()); // 1 birth location. in TEST_F()
180 EXPECT_EQ(1, birth_map.begin()->second->birth_count()); // 1 birth. in TEST_F()
202 birth_map.clear(); in TEST_F()
204 data->SnapshotMaps(0, &birth_map, &deaths); in TEST_F()
205 EXPECT_EQ(1u, birth_map.size()); // 1 birth location. in TEST_F()
206 EXPECT_EQ(2, birth_map.begin()->second->birth_count()); // 2 births. in TEST_F()
211 EXPECT_EQ(birth_map.begin()->second, deaths.begin()->first); in TEST_F()