Lines Matching full:line
54 const std::string& line,
61 size_t end_key_pos = line.find_first_of(key_value_delimiter);
63 DVLOG(1) << "cannot parse key from line: " << line;
66 key->assign(line, 0, end_key_pos);
69 std::string remains(line, end_key_pos, line.size() - end_key_pos);
72 DVLOG(1) << "cannot parse value from line: " << line;
83 bool SplitStringIntoKeyValuePairs(const std::string& line,
90 SplitString(line, key_value_pair_delimiter, &pairs);
95 // line, so continue with the next pair.
179 // HTML 5 defines whitespace as: space, tab, LF, line tab, FF, or CR.