Lines Matching refs:it
47 auto &&it = map_.find(name); in GetProperty()
48 if (it == map_.end()) { in GetProperty()
51 return it->second; in GetProperty()
95 auto &&it = map_.find(section_name); in GetSection()
96 assert(it != map_.end()); in GetSection()
97 return it->second; in GetSection()
106 auto &&it = map_.find(section_name); in HasProperty()
107 if (it == map_.end()) { in HasProperty()
110 return it->second.HasProperty(property_name); in HasProperty()
115 auto &&it = map_.find(section_name); in GetProperty()
116 if (it == map_.end()) { in GetProperty()
119 return it->second.GetProperty(property_name); in GetProperty()