Lines Matching refs:ConfigParser
52 class ConfigParser { class
62 explicit ConfigParser(std::string&& content) in ConfigParser() function in ConfigParser
142 DISALLOW_IMPLICIT_CONSTRUCTORS(ConfigParser);
195 ConfigParser cp(std::move(content)); in parse_config_file()
205 if (result == ConfigParser::kError) { in parse_config_file()
213 if (result == ConfigParser::kSection || result == ConfigParser::kEndOfFile) { in parse_config_file()
217 if (result == ConfigParser::kPropertyAssign) { in parse_config_file()
282 if (result == ConfigParser::kSection && name == section_name) { in parse_config_file()
286 if (result == ConfigParser::kEndOfFile) { in parse_config_file()
302 if (result == ConfigParser::kEndOfFile || result == ConfigParser::kSection) { in parse_config_file()
306 if (result == ConfigParser::kPropertyAssign) { in parse_config_file()
315 } else if (result == ConfigParser::kPropertyAppend) { in parse_config_file()
342 if (result == ConfigParser::kError) { in parse_config_file()