Returns the number of string identifiers in the .dex file.
| 469 | |
| 470 | // Returns the number of string identifiers in the .dex file. |
| 471 | size_t NumStringIds() const { |
| 472 | DCHECK(header_ != nullptr) << GetLocation(); |
| 473 | return header_->string_ids_size_; |
| 474 | } |
| 475 | |
| 476 | // Returns the StringId at the specified index. |
| 477 | const StringId& GetStringId(dex::StringIndex idx) const { |
no outgoing calls
no test coverage detected