| 480 | } |
| 481 | |
| 482 | dex::StringIndex GetIndexForStringId(const StringId& string_id) const { |
| 483 | CHECK_GE(&string_id, string_ids_) << GetLocation(); |
| 484 | CHECK_LT(&string_id, string_ids_ + header_->string_ids_size_) << GetLocation(); |
| 485 | return dex::StringIndex(&string_id - string_ids_); |
| 486 | } |
| 487 | |
| 488 | int32_t GetStringLength(const StringId& string_id) const; |
| 489 |
nothing calls this directly
no test coverage detected