Searched refs:content_ (Results 1 – 1 of 1) sorted by relevance
63 : content_(std::move(content)), p_(0), lineno_(0), was_end_of_file_(false) {} in ConfigParser()124 size_t found = content_.find('\n', p_); in NextLine()126 *line = content_.substr(p_, found - p_); in NextLine()129 *line = content_.substr(p_); in NextLine()137 std::string content_; member in ConfigParser