Home | History | Annotate | Download | only in runtime

Lines Matching defs:end_index

897   unsigned int end_index = s.size() - 1;
908 while (end_index >= start_index) {
909 if (!isspace(s[end_index])) {
912 end_index--;
916 if (end_index < start_index) {
919 // Start_index is the first non-space, end_index is the last one.
920 return s.substr(start_index, end_index - start_index + 1);