Lines Matching refs:string
33 using MapType = std::map<std::string, std::string>;
42 bool HasProperty(const std::string &name) const { in HasProperty()
46 std::string GetProperty(const std::string &name) const { in GetProperty()
54 std::string operator[](const std::string &name) const {
73 std::map<std::string, std::string> map_;
81 using MapType = std::map<std::string, ConfigSection>;
90 bool HasSection(const std::string §ion_name) const { in HasSection()
94 const ConfigSection &GetSection(const std::string §ion_name) const { in GetSection()
100 const ConfigSection &operator[](const std::string §ion_name) const {
104 bool HasProperty(const std::string §ion_name, in HasProperty()
105 const std::string &property_name) const { in HasProperty()
113 std::string GetProperty(const std::string §ion_name, in GetProperty()
114 const std::string &property_name) const { in GetProperty()
137 std::map<std::string, ConfigSection> map_;
156 static ConfigFile ParseFile(const std::string &path);