Home
last modified time | relevance | path

Searched refs:proto_idx_ (Results 1 – 12 of 12) sorted by relevance

/art/runtime/
Dmethod_helper-inl.h35 return mid.name_idx_ == other_mid.name_idx_ && mid.proto_idx_ == other_mid.proto_idx_; in HasSameNameAndSignature()
Ddex_file-inl.h42 return Signature(this, GetProtoId(method_id.proto_idx_)); in GetMethodSignature()
Dmethod_helper.cc127 other_dexfile.GetProtoId(name_and_sig_mid.proto_idx_)); in FindDexMethodIndexInOtherDexFile()
Ddex_file.h175 uint16_t proto_idx_; // index into proto_ids_ array for method prototype member
612 return GetProtoId(method_id.proto_idx_); in GetMethodPrototype()
625 return StringDataByIdx(GetProtoId(method_id.proto_idx_).shorty_idx_); in GetMethodShorty()
629 return StringDataAndUtf16LengthByIdx(GetProtoId(method_id.proto_idx_).shorty_idx_, length); in GetMethodShorty()
Ddex_file_test.cc326 const DexFile::ProtoId& signature = java_lang_dex_file_->GetProtoId(to_find.proto_idx_); in TEST_F()
Ddex_file_verifier.cc1654 if (UNLIKELY(!CheckIndex(item->proto_idx_, dex_file_->NumProtoIds(), in CheckInterMethodIdItem()
1670 if (UNLIKELY(prev_item->proto_idx_ >= item->proto_idx_)) { in CheckInterMethodIdItem()
Ddex_file.cc539 if (proto_idx > method.proto_idx_) { in FindMethodId()
541 } else if (proto_idx < method.proto_idx_) { in FindMethodId()
Dclass_linker.cc2906 if (strcmp("V", dex_file.GetShorty(method_id.proto_idx_)) == 0) { in LoadMethod()
4826 return mid_->name_idx_ == other_mid.name_idx_ && mid_->proto_idx_ == other_mid.proto_idx_; in HasSameNameAndSignature()
/art/compiler/sea_ir/types/
Dtype_inference.cc59 uint32_t return_type_idx = dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_; in GetReturnValueType()
/art/runtime/verifier/
Dmethod_verifier.cc2246 uint32_t return_type_idx = dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_; in CodeFlowVerifyInstruction()
2270 uint32_t return_type_idx = dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_; in CodeFlowVerifyInstruction()
2352 uint32_t return_type_idx = dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_; in CodeFlowVerifyInstruction()
2410 uint32_t return_type_idx = dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_; in CodeFlowVerifyInstruction()
3261 dex_file_->GetProtoId(dex_file_->GetMethodId(method_idx).proto_idx_)); in VerifyInvocationArgsUnresolvedMethod()
/art/compiler/optimizing/
Dbuilder.cc329 const DexFile::ProtoId& proto_id = dex_file_->GetProtoId(method_id.proto_idx_); in BuildInvoke()
/art/compiler/dex/
Dmir_graph.cc1406 return cu_->dex_file->GetShorty(method_id.proto_idx_); in GetShortyFromTargetIdx()