| 595 | } |
| 596 | |
| 597 | uint32_t GetIndexForMethodId(const MethodId& method_id) const { |
| 598 | CHECK_GE(&method_id, method_ids_) << GetLocation(); |
| 599 | CHECK_LT(&method_id, method_ids_ + header_->method_ids_size_) << GetLocation(); |
| 600 | return &method_id - method_ids_; |
| 601 | } |
| 602 | |
| 603 | // Looks up a method by its declaring class, name and proto_id |
| 604 | const MethodId* FindMethodId(const DexFile::TypeId& declaring_klass, |
nothing calls this directly
no outgoing calls
no test coverage detected