Home | History | Annotate | Download | only in runtime

Lines Matching full:start_index

927   unsigned int start_index = 0;
931 while (start_index < s.size()) {
932 if (!isspace(s[start_index])) {
935 start_index++;
939 while (end_index >= start_index) {
947 if (end_index < start_index) {
950 // Start_index is the first non-space, end_index is the last one.
951 return s.substr(start_index, end_index - start_index + 1);