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

/gem5/ext/dsent/libutil/
H A DString.cc138 size_t currPos, nextPos; local
140 nextPos = find_first_of(delimiters_);
143 if(nextPos == string::npos)
152 if(nextPos != currPos)
154 result.push_back(substr(currPos, nextPos - currPos));
156 currPos = nextPos + 1;
157 nextPos = find_first_of(delimiters_, currPos);
174 size_t currPos, nextPos; local
176 nextPos = find(delimiters_[0]);
179 if(nextPos
197 size_t currPos, nextPos; local
[all...]

Completed in 11 milliseconds