Lines Matching refs:population
28 : name(name), population(pop) in City()
34 int population; member
40 out << city.name << ' ' << city.population << ' '; in operator <<()
49 if (in >> city.name >> city.population) in operator >>()
61 return (c1.name == c2.name && c1.population == c2.population in operator ==()
174 map[v].population = 49170; in test_bundled_properties()
180 map[u].population = 95658; in test_bundled_properties()
204 put(&City::population, map, v, 49168); in test_bundled_properties()
205 BOOST_TEST(get(&City::population, map)[v] == 49168); in test_bundled_properties()
214 put(&City::population, fmap, v, 49169); in test_bundled_properties()
215 BOOST_TEST(get(&City::population, fmap)[v] == 49169); in test_bundled_properties()