Lines Matching refs:last_slash
82 size_t last_slash = descriptor.rfind('/'); in DescriptorClassToName() local
83 if (last_slash == std::string::npos) { in DescriptorClassToName()
84 last_slash = 0; in DescriptorClassToName()
87 last_slash++; in DescriptorClassToName()
90 size_t size = descriptor.size() - 1 - last_slash; in DescriptorClassToName()
91 std::string result(descriptor.substr(last_slash, size)); in DescriptorClassToName()
1384 char* last_slash = strrchr(mangle, '/'); in DumpClass() local
1385 if (last_slash != nullptr) { in DumpClass()
1386 *last_slash = '\0'; in DumpClass()
1832 const size_t last_slash = dex_file_location.rfind('/'); in OutputDexFile() local
1833 std::string dex_file_directory = dex_file_location.substr(0, last_slash + 1); in OutputDexFile()