| 86 | } |
| 87 | |
| 88 | inline const char* DexFile::GetFieldName(const FieldId& field_id) const { |
| 89 | return StringDataByIdx(field_id.name_idx_); |
| 90 | } |
| 91 | |
| 92 | inline const char* DexFile::GetMethodDeclaringClassDescriptor(const MethodId& method_id) const { |
| 93 | const DexFile::TypeId& type_id = GetTypeId(method_id.class_idx_); |
nothing calls this directly
no outgoing calls
no test coverage detected