Searched refs:newpos (Results 1 - 1 of 1) sorted by relevance

/bind-9.6-ESV-R11/unit/atf-src/atf-c++/detail/
H A Dtext.cpp98 std::string::size_type pos = 0, newpos = 0; local
99 while (pos < str.length() && newpos != std::string::npos) {
100 newpos = str.find(delim, pos);
101 if (newpos != pos)
102 words.push_back(str.substr(pos, newpos - pos));
103 pos = newpos + delim.length();

Completed in 492 milliseconds