| 660 | } |
| 661 | |
| 662 | bool Signature::IsVoid() const { |
| 663 | const char* return_type = dex_file_->GetReturnTypeDescriptor(*proto_id_); |
| 664 | return strcmp(return_type, "V") == 0; |
| 665 | } |
| 666 | |
| 667 | bool Signature::operator==(const StringPiece& rhs) const { |
| 668 | if (dex_file_ == nullptr) { |
no test coverage detected