Lines Matching refs:start
252 size_t start = 0; in trim() local
254 while (isspace(str[start]) != 0 && start < end) { in trim()
255 ++start; in trim()
257 while (isspace(str[end]) != 0 && start < end) { in trim()
260 if (start <= end) { in trim()
261 return str.substr(start, end - start + 1); in trim()
384 size_t start = 0; in ParseVectorInt() local
385 while (start < value.size()) { in ParseVectorInt()
386 size_t end = value.find(':', start); in ParseVectorInt()
388 result.push_back(ParseInt(value.substr(start))); in ParseVectorInt()
391 result.push_back(ParseInt(value.substr(start, end - start))); in ParseVectorInt()
392 start = end + 1; in ParseVectorInt()