Returns the number of method identifiers in the .dex file.
| 584 | |
| 585 | // Returns the number of method identifiers in the .dex file. |
| 586 | size_t NumMethodIds() const { |
| 587 | DCHECK(header_ != nullptr) << GetLocation(); |
| 588 | return header_->method_ids_size_; |
| 589 | } |
| 590 | |
| 591 | // Returns the MethodId at the specified index. |
| 592 | const MethodId& GetMethodId(uint32_t idx) const { |