Searched defs:end_index (Results 1 - 1 of 1) sorted by last modified time

/art/runtime/
H A Dutils.cc897 unsigned int end_index = s.size() - 1; local
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);

Completed in 7 milliseconds