Returns the number of class definitions in the .dex file.
| 631 | |
| 632 | // Returns the number of class definitions in the .dex file. |
| 633 | uint32_t NumClassDefs() const { |
| 634 | DCHECK(header_ != nullptr) << GetLocation(); |
| 635 | return header_->class_defs_size_; |
| 636 | } |
| 637 | |
| 638 | // Returns the ClassDef at the specified index. |
| 639 | const ClassDef& GetClassDef(uint16_t idx) const { |
no outgoing calls
no test coverage detected