Lines Matching refs:strIndex
97 std::size_t strIndex = 0;
99 std::size_t pos = str.find_first_of(delimiter, strIndex);
100 while ((pos < str.size()) && (pos > strIndex)) {
101 std::string subStr = str.substr(strIndex, pos - strIndex);
103 strIndex = pos;
104 strIndex = str.find_first_not_of(delimiter, strIndex);
105 pos = str.find_first_of(delimiter, strIndex);
107 if (pos > strIndex) {
108 std::string subStr = str.substr(strIndex, pos - strIndex);