Returns the number of prototype identifiers in the .dex file.
| 690 | |
| 691 | // Returns the number of prototype identifiers in the .dex file. |
| 692 | size_t NumProtoIds() const { |
| 693 | DCHECK(header_ != nullptr) << GetLocation(); |
| 694 | return header_->proto_ids_size_; |
| 695 | } |
| 696 | |
| 697 | // Returns the ProtoId at the specified index. |
| 698 | const ProtoId& GetProtoId(uint16_t idx) const { |
no outgoing calls
no test coverage detected