Searched defs:proto_id (Results 1 - 7 of 7) sorted by relevance

/art/compiler/dex/quick/
H A Ddex_file_method_inliner.cc777 const DexFile::ProtoId* proto_id = dex_file->FindProtoId(return_type, signature_type_idxs, local
779 if (proto_id == nullptr) {
783 *proto_index = dex_file->GetIndexForProtoId(*proto_id);
/art/runtime/
H A Dart_method-inl.h377 const DexFile::ProtoId& proto_id = dex_file->GetMethodPrototype(method_id); local
378 uint16_t return_type_idx = proto_id.return_type_idx_;
431 const DexFile::ProtoId& proto_id = dex_file->GetMethodPrototype(method_id); local
432 uint16_t return_type_idx = proto_id.return_type_idx_;
H A Dart_method.cc339 const auto& proto_id = dex_file->GetMethodPrototype(method_id); local
340 const DexFile::TypeList* proto_params = dex_file->GetProtoParameters(proto_id);
H A Ddex_file.cc792 const ProtoId* proto_id = FindProtoId(return_type_idx, param_type_indices); local
793 if (proto_id == nullptr) {
796 return Signature(this, *proto_id);
H A Ddex_file.h650 // Looks up a method by its declaring class, name and proto_id
746 const char* GetReturnTypeDescriptor(const ProtoId& proto_id) const {
747 return StringByTypeIdx(proto_id.return_type_idx_);
762 uint16_t GetIndexForProtoId(const ProtoId& proto_id) const {
763 CHECK_GE(&proto_id, proto_ids_) << GetLocation();
764 CHECK_LT(&proto_id, proto_ids_ + header_->proto_ids_size_) << GetLocation();
765 return &proto_id - proto_ids_;
786 const ProtoId& proto_id = GetProtoId(proto_idx); local
787 return StringDataByIdx(proto_id.shorty_idx_);
790 const TypeList* GetProtoParameters(const ProtoId& proto_id) cons
1293 DexFileParameterIterator(const DexFile& dex_file, const DexFile::ProtoId& proto_id) argument
[all...]
H A Dclass_linker.cc4827 const DexFile::ProtoId& proto_id = dex_file->GetMethodPrototype(method_id); local
4828 uint16_t return_type_idx = proto_id.return_type_idx_;
/art/runtime/verifier/
H A Dmethod_verifier.cc1686 const DexFile::ProtoId& proto_id = local
1688 DexFileParameterIterator iterator(*dex_file_, proto_id);
1767 const char* descriptor = dex_file_->GetReturnTypeDescriptor(proto_id);
4980 const DexFile::ProtoId& proto_id = dex_file_->GetMethodPrototype(method_id); local
4981 uint16_t return_type_idx = proto_id.return_type_idx_;

Completed in 858 milliseconds