Home
last modified time | relevance | path

Searched refs:end_key_pos (Results 1 – 1 of 1) sorted by relevance

/external/libchrome/base/strings/
Dstring_split.cc113 size_t end_key_pos = input.find_first_of(delimiter); in AppendStringKeyValue() local
114 if (end_key_pos == std::string::npos) { in AppendStringKeyValue()
118 input.substr(0, end_key_pos).CopyToString(&result_pair.first); in AppendStringKeyValue()
121 StringPiece remains = input.substr(end_key_pos, input.size() - end_key_pos); in AppendStringKeyValue()