Home
last modified time | relevance | path

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

/third_party/gn/src/base/strings/
Dstring_split.cc104 size_t end_key_pos = input.find_first_of(delimiter); in AppendStringKeyValue() local
105 if (end_key_pos == std::string::npos) { in AppendStringKeyValue()
108 result_pair.first.assign(input.substr(0, end_key_pos)); in AppendStringKeyValue()
112 input.substr(end_key_pos, input.size() - end_key_pos); in AppendStringKeyValue()