Home | History | Annotate | Download | only in dex2oat

Lines Matching refs:last_slash

1834               size_t last_slash = dex_file->GetLocation().rfind('/');
1835 if (last_slash != std::string::npos) {
1836 dex_location = dex_location.substr(last_slash + 1);
2823 size_t last_slash = res.rfind('/');
2824 if (last_slash == std::string::npos || last_slash == 0) {
2827 size_t penultimate_slash = res.rfind('/', last_slash - 1);
2832 if (res.substr(penultimate_slash + 1, last_slash - penultimate_slash - 1) !=
2837 return res.substr(0, penultimate_slash) + res.substr(last_slash);