Returns the number of field identifiers in the .dex file.
| 544 | |
| 545 | // Returns the number of field identifiers in the .dex file. |
| 546 | size_t NumFieldIds() const { |
| 547 | DCHECK(header_ != nullptr) << GetLocation(); |
| 548 | return header_->field_ids_size_; |
| 549 | } |
| 550 | |
| 551 | // Returns the FieldId at the specified index. |
| 552 | const FieldId& GetFieldId(uint32_t idx) const { |