Lines Matching refs:string
14 void INIParser::Parse(const std::string& content) {
19 std::string current_section;
21 std::string line = tokenizer.token();
34 if (end != std::string::npos)
37 std::string key, value;
39 if (equal != std::string::npos) {
52 void DictionaryValueINIParser::HandleTriplet(const std::string& section,
53 const std::string& key,
54 const std::string& value) {
59 if (section.find('.') == std::string::npos &&
60 key.find('.') == std::string::npos)