Lines Matching refs:strIndex
389 std::size_t strIndex = 0;
391 std::size_t pos = str.find_first_of(delimiter, strIndex);
392 while ((pos < str.size()) && (pos > strIndex)) {
393 std::string subStr = str.substr(strIndex, pos - strIndex);
395 strIndex = pos;
396 strIndex = str.find_first_not_of(delimiter, strIndex);
397 pos = str.find_first_of(delimiter, strIndex);
399 if (pos > strIndex) {
400 std::string subStr = str.substr(strIndex, pos - strIndex);