Lines Matching refs:start
73 size_t start = 0;
76 while (start < str.size()) {
77 if (!isspace(str[start])) {
80 start++;
83 while (start < end) {
90 if (end < start) {
94 return str.substr(start, end - start + 1);
101 size_t start = 0;
103 pos = str.find_first_of(pattern, start);
104 result.push_back(str.substr(start, pos - start));
108 start = pos + 1;