Lines Matching refs:last_slash
81 size_t last_slash = descriptor.rfind('/'); in DescriptorClassToName() local
82 if (last_slash == std::string::npos) { in DescriptorClassToName()
83 last_slash = 0; in DescriptorClassToName()
86 last_slash++; in DescriptorClassToName()
89 size_t size = descriptor.size() - 1 - last_slash; in DescriptorClassToName()
90 std::string result(descriptor.substr(last_slash, size)); in DescriptorClassToName()
1380 char* last_slash = strrchr(mangle, '/'); in DumpClass() local
1381 if (last_slash != nullptr) { in DumpClass()
1382 *last_slash = '\0'; in DumpClass()
1828 const size_t last_slash = dex_file_location.rfind('/'); in OutputDexFile() local
1829 std::string dex_file_directory = dex_file_location.substr(0, last_slash + 1); in OutputDexFile()