Lines Matching full:line
23 std::string line = tokenizer.token();
24 if (line.empty()) {
25 // Skips the empty line.
28 if (line[0] == '#' || line[0] == ';') {
29 // This line is a comment.
32 if (line[0] == '[') {
34 current_section = line.substr(1);
40 size_t equal = line.find('=');
42 key = line.substr(0, equal);
43 value = line.substr(equal + 1);