Home | History | Annotate | Download | only in base

Lines Matching full:last_separator

148   const StringType::size_type last_separator =
152 (last_separator == StringType::npos ||
153 penultimate_dot > last_separator) &&
305 StringType::size_type last_separator =
308 if (last_separator == StringType::npos) {
311 } else if (last_separator == letter + 1) {
314 } else if (last_separator == letter + 2 &&
319 } else if (last_separator != 0) {
321 new_path.path_.resize(last_separator);
343 StringType::size_type last_separator =
346 if (last_separator != StringType::npos &&
347 last_separator < new_path.path_.length() - 1) {
348 new_path.path_.erase(0, last_separator + 1);