Home | History | Annotate | Download | only in dexlayout

Lines Matching refs:last_slash

93   size_t last_slash = descriptor.rfind('/');
94 if (last_slash == std::string::npos) {
95 last_slash = 0;
98 last_slash++;
101 size_t size = descriptor.size() - 1 - last_slash;
102 std::string result(descriptor.substr(last_slash, size));
1315 char* last_slash = strrchr(mangle, '/');
1316 if (last_slash != nullptr) {
1317 *last_slash = '\0';
1893 size_t last_slash = dex_file_location.rfind('/');
1894 std::string dex_file_directory = dex_file_location.substr(0, last_slash + 1);
1897 } else if (last_slash != std::string::npos) {
1898 output_location += dex_file_location.substr(last_slash);