Home
last modified time | relevance | path

Searched refs:last_img_slash (Results 1 – 1 of 1) sorted by relevance

/art/dex2oat/
Ddex2oat.cc969 size_t last_img_slash = base_img.rfind('/'); in ExpandOatAndImageFilenames() local
970 if (last_img_slash == std::string::npos) { in ExpandOatAndImageFilenames()
975 if (base_img.find('@', last_img_slash) != std::string::npos) { in ExpandOatAndImageFilenames()
976 last_img_slash = base_img.rfind('@'); in ExpandOatAndImageFilenames()
981 std::string prefix = base_img.substr(last_img_slash + 1); in ExpandOatAndImageFilenames()
989 base_img = base_img.substr(0, last_img_slash + 1); in ExpandOatAndImageFilenames()