Home
last modified time | relevance | path

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

/system/bt/gd/common/
Dstrings.cc88 auto index_of_delim = str.find(delim); in StringSplit() local
89 …while ((max_token == 0 || tokens.size() < (max_token - 1)) && index_of_delim != std::string::npos)… in StringSplit()
90 tokens.push_back(str.substr(starting_index, index_of_delim - starting_index)); in StringSplit()
91 starting_index = index_of_delim + delim.size(); in StringSplit()
92 index_of_delim = str.find(delim, starting_index); in StringSplit()