| 555 | } |
| 556 | |
| 557 | uint32_t GetIndexForFieldId(const FieldId& field_id) const { |
| 558 | CHECK_GE(&field_id, field_ids_) << GetLocation(); |
| 559 | CHECK_LT(&field_id, field_ids_ + header_->field_ids_size_) << GetLocation(); |
| 560 | return &field_id - field_ids_; |
| 561 | } |
| 562 | |
| 563 | // Looks up a field by its declaring class, name and type |
| 564 | const FieldId* FindFieldId(const DexFile::TypeId& declaring_klass, |
nothing calls this directly
no outgoing calls
no test coverage detected