Lines Matching refs:it
45 auto &&it = map_.find(name); in GetProperty()
46 if (it == map_.end()) { in GetProperty()
49 return it->second; in GetProperty()
96 auto &&it = map_.find({section_name, version}); in GetSection()
97 assert(it != map_.end()); in GetSection()
98 return it->second; in GetSection()
107 auto &&it = map_.find({section_name, version}); in HasProperty()
108 if (it == map_.end()) { in HasProperty()
111 return it->second.HasProperty(property_name); in HasProperty()
116 auto &&it = map_.find({section_name, version}); in GetProperty()
117 if (it == map_.end()) { in GetProperty()
120 return it->second.GetProperty(property_name); in GetProperty()