Lines Matching refs:proto_id
689 const char* GetReturnTypeDescriptor(const ProtoId& proto_id) const { in GetReturnTypeDescriptor() argument
690 return StringByTypeIdx(proto_id.return_type_idx_); in GetReturnTypeDescriptor()
705 uint16_t GetIndexForProtoId(const ProtoId& proto_id) const { in GetIndexForProtoId() argument
706 CHECK_GE(&proto_id, proto_ids_) << GetLocation(); in GetIndexForProtoId()
707 CHECK_LT(&proto_id, proto_ids_ + header_->proto_ids_size_) << GetLocation(); in GetIndexForProtoId()
708 return &proto_id - proto_ids_; in GetIndexForProtoId()
729 const ProtoId& proto_id = GetProtoId(proto_idx); in GetShorty() local
730 return StringDataByIdx(proto_id.shorty_idx_); in GetShorty()
733 const TypeList* GetProtoParameters(const ProtoId& proto_id) const { in GetProtoParameters() argument
734 if (proto_id.parameters_off_ == 0) { in GetProtoParameters()
737 const byte* addr = begin_ + proto_id.parameters_off_; in GetProtoParameters()
1034 DexFileParameterIterator(const DexFile& dex_file, const DexFile::ProtoId& proto_id) in DexFileParameterIterator() argument
1036 type_list_ = dex_file_.GetProtoParameters(proto_id); in DexFileParameterIterator()