Lines Matching refs:strIndex
1417 std::size_t strIndex = 0;
1418 std::size_t pos = option.find_first_of(delimiter, strIndex);
1419 while ((pos < option.size()) && (pos > strIndex)) {
1420 argListStr->push_back(option.substr(strIndex, pos - strIndex));
1421 strIndex = pos;
1422 strIndex = option.find_first_not_of(delimiter, strIndex);
1423 pos = option.find_first_of(delimiter, strIndex);
1425 if (pos > strIndex) {
1426 argListStr->push_back(option.substr(strIndex, pos - strIndex));