Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/system/gd/common/
Dstrings.cc91 auto index_of_delim = str.find(delim); in StringSplit() local
92 …while ((max_token == 0 || tokens.size() < (max_token - 1)) && index_of_delim != std::string::npos)… in StringSplit()
93 tokens.push_back(str.substr(starting_index, index_of_delim - starting_index)); in StringSplit()
94 starting_index = index_of_delim + delim.size(); in StringSplit()
95 index_of_delim = str.find(delim, starting_index); in StringSplit()