Home
last modified time | relevance | path

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

/art/runtime/jit/
Dprofile_saver.cc1131 size_t last_sep_index = path.find_last_of('/'); in AddTrackedLocationsToMap() local
1132 if (last_sep_index == path.size() - 1) { in AddTrackedLocationsToMap()
1137 std::string filename = last_sep_index == std::string::npos in AddTrackedLocationsToMap()
1139 : path.substr(last_sep_index + 1); in AddTrackedLocationsToMap()
/art/libprofile/profile/
Dprofile_compilation_info.cc635 size_t last_sep_index = dex_location.find_last_of('/'); in GetProfileDexFileBaseKeyView() local
636 if (last_sep_index == std::string::npos) { in GetProfileDexFileBaseKeyView()
639 DCHECK(last_sep_index < dex_location.size()); in GetProfileDexFileBaseKeyView()
640 return dex_location.substr(last_sep_index + 1); in GetProfileDexFileBaseKeyView()